summaryrefslogtreecommitdiff
path: root/src/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf.c b/src/conf.c
index 41eecf6..235e624 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -1368,7 +1368,7 @@ static const struct oper_privs
char *
oper_privs_as_string(const unsigned int port)
{
- static char privs_out[16];
+ static char privs_out[IRCD_BUFSIZE];
char *privs_ptr = privs_out;
const struct oper_privs *opriv = flag_list;
@@ -1433,8 +1433,8 @@ void
read_conf_files(int cold)
{
const char *filename;
- char chanmodes[32];
- char chanlimit[32];
+ char chanmodes[IRCD_BUFSIZE];
+ char chanlimit[IRCD_BUFSIZE];
conf_parser_ctx.boot = cold;
filename = ConfigFileEntry.configfile;