summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2005-01-10 12:33:54 +0000
committerJeff Trawick <trawick@apache.org>2005-01-10 12:33:54 +0000
commit8c19c6c82eeee4cd49359d50fb27180757eca5cf (patch)
tree76630e3bc1c56a4e70f2412eafaa804a9cabd1f2
parentc4882b844e5a9b6a6e9c95c85b35b0acf5d5443f (diff)
downloadhttpd-8c19c6c82eeee4cd49359d50fb27180757eca5cf.tar.gz
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
-rw-r--r--modules/proxy/proxy_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c
index bb13b037e3..0e32d0979d 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) {