You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2005/01/10 13:33:56 UTC

svn commit: r124796 - /httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c

Author: trawick
Date: Mon Jan 10 04:33:54 2005
New Revision: 124796

URL: http://svn.apache.org/viewcvs?view=rev&rev=124796
Log:
create tmp files with names more like those of htpasswd and
htdigest

Modified:
   httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c

Modified: httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c
Url: http://svn.apache.org/viewcvs/httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c?view=diff&rev=124796&p1=httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c&r1=124795&p2=httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c&r2=124796
==============================================================================
--- httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c	(original)
+++ httpd/httpd/branches/proxy-reqbody/modules/proxy/proxy_http.c	Mon Jan 10 04:33:54 2005
@@ -545,7 +545,7 @@
                     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) {