You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2014/02/25 02:00:10 UTC

svn commit: r1571504 - /subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c

Author: danielsh
Date: Tue Feb 25 01:00:10 2014
New Revision: 1571504

URL: http://svn.apache.org/r1571504
Log:
Follow-up to r1571499.

* tools/server-side/mod_dontdothat/mod_dontdothat.c
  (dontdothat_module): Merge now-duplicated declaration.

Modified:
    subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c

Modified: subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c?rev=1571504&r1=1571503&r2=1571504&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c (original)
+++ subversion/trunk/tools/server-side/mod_dontdothat/mod_dontdothat.c Tue Feb 25 01:00:10 2014
@@ -40,7 +40,7 @@
 #include "svn_path.h"
 #include "private/svn_fspath.h"
 
-module AP_MODULE_DECLARE_DATA dontdothat_module;
+extern module AP_MODULE_DECLARE_DATA dontdothat_module;
 
 typedef struct dontdothat_config_rec {
   const char *config_file;
@@ -711,8 +711,6 @@ dontdothat_register_hooks(apr_pool_t *po
                            AP_FTYPE_RESOURCE);
 }
 
-extern module AP_MODULE_DECLARE_DATA dontdothat_module;
-
 module AP_MODULE_DECLARE_DATA dontdothat_module =
 {
   STANDARD20_MODULE_STUFF,