You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2009/05/31 16:21:51 UTC

svn commit: r780432 - /httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c

Author: fuankg
Date: Sun May 31 14:21:51 2009
New Revision: 780432

URL: http://svn.apache.org/viewvc?rev=780432&view=rev
Log:
moved unixd.h include after HAVE_FTP_LOWPORTD condition.

Modified:
    httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c

Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c?rev=780432&r1=780431&r2=780432&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/ftp_lowportd.c Sun May 31 14:21:51 2009
@@ -20,9 +20,9 @@
 #include "apr_signal.h"
 #include "ap_listen.h"
 #include "ap_mpm.h"
-#include "unixd.h"
 
 #ifdef HAVE_FTP_LOWPORTD
+#include "unixd.h"
 
 #if APR_HAVE_SYS_SOCKET_H
 #include <sys/socket.h>