Moved local #includes after global ones. (So "missing.h" is after
authorcmiller <cmiller>
Mon, 5 Mar 2001 03:32:35 +0000 (03:32 +0000)
committercmiller <cmiller>
Mon, 5 Mar 2001 03:32:35 +0000 (03:32 +0000)
<netinet/in.h>, especially.  I get warnings otherwise.)

src/modules/rlm_sql/rlm_sql.c

index 7f67e0c..bf312e5 100644 (file)
@@ -43,15 +43,15 @@ static const char rcsid[] =
 #include <sys/wait.h>
 #include <string.h>
 
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
 #include "radiusd.h"
 #include "modules.h"
 #include "conffile.h"
 #include "rlm_sql.h"
 
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-
 static CONF_PARSER module_config[] = {
        {"driver",PW_TYPE_STRING_PTR, offsetof(SQL_CONFIG,sql_driver), NULL, "mysql"},
        {"server",PW_TYPE_STRING_PTR, offsetof(SQL_CONFIG,sql_server), NULL, "localhost"},