]> jfr.im git - solanum.git/blobdiff - ircd/ircd_parser.y
providers/opm: use a name that makes more sense for this variable
[solanum.git] / ircd / ircd_parser.y
index 92716ae54fbd61365ae0b192115f94a2e3e170bc..900f5ea5e698a766ef0da7a78fc8f053d80c298c 100644 (file)
@@ -6,8 +6,6 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#include <netinet/in.h>
-
 #include <string.h>
 #include <stdlib.h>
 #include <stdarg.h>
@@ -15,7 +13,6 @@
 #define WE_ARE_MEMORY_C
 #include "stdinc.h"
 #include "setup.h"
-#include "common.h"
 #include "ircd_defs.h"
 #include "defaults.h"
 #include "client.h"
@@ -163,7 +160,7 @@ static void add_cur_list(int type, char *str, int number)
 
 %union {
        int             number;
-       char            string[IRCD_BUFSIZE + 1];
+       char            string[BUFSIZE + 1];
        conf_parm_t *   conf_parm;
 }