You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fi...@apache.org on 2009/01/30 03:51:32 UTC

svn commit: r739151 - /httpd/httpd/trunk/modules/arch/unix/mod_unixd.c

Author: fielding
Date: Fri Jan 30 02:51:32 2009
New Revision: 739151

URL: http://svn.apache.org/viewvc?rev=739151&view=rev
Log:
name protect unixd_setup_child and restore its prototype to unixd.h

If someone wants to find a better place for it, then feel free to
so so only if you compile with -Werror before committing.

Modified:
    httpd/httpd/trunk/modules/arch/unix/mod_unixd.c

Modified: httpd/httpd/trunk/modules/arch/unix/mod_unixd.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/arch/unix/mod_unixd.c?rev=739151&r1=739150&r2=739151&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/arch/unix/mod_unixd.c (original)
+++ httpd/httpd/trunk/modules/arch/unix/mod_unixd.c Fri Jan 30 02:51:32 2009
@@ -22,6 +22,7 @@
 #include "mpm_common.h"
 #include "os.h"
 #include "ap_mpm.h"
+#include "unixd.h"
 #include "apr_thread_proc.h"
 #include "apr_strings.h"
 #include "apr_portable.h"
@@ -302,7 +303,7 @@
     return OK;
 }
 
-AP_DECLARE(int) unixd_setup_child(void)
+AP_DECLARE(int) ap_unixd_setup_child(void)
 {
     if (set_group_privs()) {
         return -1;