You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2016/12/02 11:56:37 UTC

svn commit: r1772337 - /httpd/httpd/branches/2.4.x/server/core.c

Author: jim
Date: Fri Dec  2 11:56:36 2016
New Revision: 1772337

URL: http://svn.apache.org/viewvc?rev=1772337&view=rev
Log:
silence warning. No functional change

Modified:
    httpd/httpd/branches/2.4.x/server/core.c

Modified: httpd/httpd/branches/2.4.x/server/core.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/server/core.c?rev=1772337&r1=1772336&r2=1772337&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/server/core.c (original)
+++ httpd/httpd/branches/2.4.x/server/core.c Fri Dec  2 11:56:36 2016
@@ -2340,7 +2340,7 @@ static const char *dirsection(cmd_parms
             return "Regex could not be compiled";
         }
     }
-    else if (!strcmp(cmd->path, "/") == 0)
+    else if (strcmp(cmd->path, "/") != 0)
     {
         char *newpath;