You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2009/11/09 15:27:49 UTC

svn commit: r834079 - /httpd/httpd/trunk/modules/dav/fs/repos.c

Author: sf
Date: Mon Nov  9 14:27:45 2009
New Revision: 834079

URL: http://svn.apache.org/viewvc?rev=834079&view=rev
Log:
Fix compiler warning

Modified:
    httpd/httpd/trunk/modules/dav/fs/repos.c

Modified: httpd/httpd/trunk/modules/dav/fs/repos.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/dav/fs/repos.c?rev=834079&r1=834078&r2=834079&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/dav/fs/repos.c (original)
+++ httpd/httpd/trunk/modules/dav/fs/repos.c Mon Nov  9 14:27:45 2009
@@ -197,7 +197,7 @@
     apr_pool_t *p;
     apr_file_t *f;
     const char *pathname;       /* we may need to remove it at close time */
-    const char *temppath;
+    char *temppath;
     int unlink_on_error;
 };