You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Blair Zajac <bl...@orcaware.com> on 2003/01/14 19:09:38 UTC

server/config.c typo, missing )

There's a typo in server/config.c at line 1285 in the APACHE_2_0_BRANCH
branch, a missing )

--- config.c    14 Jan 2003 16:54:36 -0000      1.156.2.2
+++ config.c    14 Jan 2003 18:06:57 -0000
@@ -1282,7 +1282,7 @@
                             APR_FILEPATH_TRUENAME, p);
     if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv)
                                       || APR_STATUS_IS_ENOENT(rv)
-                                      || APR_STATUS_IS_ENOTDIR(rv)) {
+                                      || APR_STATUS_IS_ENOTDIR(rv))) {
         return newpath;
     }
     else {

Otherwise, this compile error results:

config.c: In function `ap_server_root_relative':
config.c:1285: parse error before '{' token

Best,
Blair

-- 
Blair Zajac <bl...@orcaware.com>
Plots of your system's performance - http://www.orcaware.com/orca/

Re: server/config.c typo, missing )

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
At 12:09 PM 1/14/2003, Blair Zajac wrote:
>There's a typo in server/config.c at line 1285 in the APACHE_2_0_BRANCH
>branch, a missing )

Fix committed, thanks Blair!

Bill