From: Ruediger Pluem Date: Mon, 24 Jul 2006 14:09:27 +0000 (+0000) Subject: * Fix typo. No functional change. X-Git-Tag: 2.3.0~2221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1c497a22211f12e9acc377ef34bc44a790ca085;p=apache * Fix typo. No functional change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@425057 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/request.c b/server/request.c index 5af0c921c2..dfcbbe13af 100644 --- a/server/request.c +++ b/server/request.c @@ -524,7 +524,7 @@ AP_DECLARE(int) ap_directory_walk(request_rec *r) && (!r->path_info || !*r->path_info))) && (cache->dir_conf_tested == sec_ent) && (strcmp(entry_dir, cache->cached) == 0)) { - int familar = 0; + int familiar = 0; /* Well this looks really familiar! If our end-result (per_dir_result) * didn't change, we have absolutely nothing to do :) @@ -532,15 +532,15 @@ AP_DECLARE(int) ap_directory_walk(request_rec *r) * we must merge our dir_conf_merged onto this new r->per_dir_config. */ if (r->per_dir_config == cache->per_dir_result) { - familar = 1; + familiar = 1; } if (r->per_dir_config == cache->dir_conf_merged) { r->per_dir_config = cache->per_dir_result; - familar = 1; + familiar = 1; } - if (familar) { + if (familiar) { apr_finfo_t thisinfo; int res; allow_options_t opts;