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

svn commit: r809938 - /httpd/httpd/trunk/modules/dav/main/mod_dav.c

Author: pquerna
Date: Tue Sep  1 09:42:16 2009
New Revision: 809938

URL: http://svn.apache.org/viewvc?rev=809938&view=rev
Log:
Remove unused conf variable.

Modified:
    httpd/httpd/trunk/modules/dav/main/mod_dav.c

Modified: httpd/httpd/trunk/modules/dav/main/mod_dav.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/dav/main/mod_dav.c?rev=809938&r1=809937&r2=809938&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/dav/main/mod_dav.c (original)
+++ httpd/httpd/trunk/modules/dav/main/mod_dav.c Tue Sep  1 09:42:16 2009
@@ -2434,7 +2434,6 @@
     dav_error *err;
     dav_error *err2;
     int result;
-    dav_dir_conf *conf;
     dav_response *multi_status;
 
     /* handle the request body */
@@ -2443,9 +2442,6 @@
         return result;
     }
 
-    conf = (dav_dir_conf *)ap_get_module_config(r->per_dir_config,
-                                                &dav_module);
-
     /* Ask repository module to resolve the resource */
     err = dav_get_resource(r, 0 /* label_allowed */, 0 /* use_checked_in */,
                            &resource);