From: Jean-Frederic Clere Date: Sat, 29 Jul 2006 00:34:18 +0000 (+0000) Subject: Typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1910d1775d299d41b08592f72d9570f7f06c4303;p=thirdparty%2Fapache%2Fhttpd.git Typo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-proxy-scoreboard@426723 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/proxymonitor.c b/support/proxymonitor.c index 3634c56c559..51aaee833ad 100644 --- a/support/proxymonitor.c +++ b/support/proxymonitor.c @@ -91,8 +91,7 @@ char * ap_server_root_relative(apr_pool_t *p, const char *name) /* 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); }