You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2006/07/24 16:09:27 UTC

svn commit: r425057 - /httpd/httpd/trunk/server/request.c

Author: rpluem
Date: Mon Jul 24 07:09:27 2006
New Revision: 425057

URL: http://svn.apache.org/viewvc?rev=425057&view=rev
Log:
* Fix typo. No functional change.

Modified:
    httpd/httpd/trunk/server/request.c

Modified: httpd/httpd/trunk/server/request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/request.c?rev=425057&r1=425056&r2=425057&view=diff
==============================================================================
--- httpd/httpd/trunk/server/request.c (original)
+++ httpd/httpd/trunk/server/request.c Mon Jul 24 07:09:27 2006
@@ -524,7 +524,7 @@
                 && (!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 @@
          * 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;