You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jf...@apache.org on 2006/07/29 02:34:19 UTC

svn commit: r426723 - /httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c

Author: jfclere
Date: Fri Jul 28 17:34:18 2006
New Revision: 426723

URL: http://svn.apache.org/viewvc?rev=426723&view=rev
Log:
Typo.

Modified:
    httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c

Modified: httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c?rev=426723&r1=426722&r2=426723&view=diff
==============================================================================
--- httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/support/proxymonitor.c Fri Jul 28 17:34:18 2006
@@ -91,8 +91,7 @@
 
     /* XXX: apr_filepath_merge better ? */
     if (basedir && name[0] != '/') {
-        fname = apr_pcalloc(p, strlen(basedir)+strlen(name)+1);
-        apr_pstrcat(fname, basedir, "/", name, NULL);
+        fname = apr_pstrcat(p, basedir, "/", name, NULL);
     } else {
         fname = apr_pstrdup(p, name);
     }