From: Jeff Trawick Date: Mon, 10 Jan 2005 12:33:54 +0000 (+0000) Subject: create tmp files with names more like those of htpasswd and X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c19c6c82eeee4cd49359d50fb27180757eca5cf;p=thirdparty%2Fapache%2Fhttpd.git create tmp files with names more like those of htpasswd and htdigest git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody@124796 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index bb13b037e37..0e32d0979d4 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -545,7 +545,7 @@ static apr_status_t spool_reqbody_cl(apr_pool_t *p, return status; } apr_filepath_merge(&template, temp_dir, - "proxy_reqbody_spoolXXXXXX", + "modproxy.tmp.XXXXXX", APR_FILEPATH_NATIVE, p); status = apr_file_mktemp(&tmpfile, template, 0, p); if (status != APR_SUCCESS) {