]> granicus.if.org Git - apache/commitdiff
* Fix typo. No functional change.
authorRuediger Pluem <rpluem@apache.org>
Mon, 24 Jul 2006 14:09:27 +0000 (14:09 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 24 Jul 2006 14:09:27 +0000 (14:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@425057 13f79535-47bb-0310-9956-ffa450edef68

server/request.c

index 5af0c921c2c40df8a11f711910aff71068954740..dfcbbe13af739530c4c36a3f5eaa208f991aa0af 100644 (file)
@@ -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;