summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index 7ac3eff..edc91e2 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -129,7 +129,7 @@ parse(struct Client *client_p, char *pbuffer, char *bufend)
return;
assert(client_p->localClient->fd.flags.open);
- assert((bufend - pbuffer) < 512);
+ assert((bufend - pbuffer) < IRCD_BUFSIZE);
for (ch = pbuffer; *ch == ' '; ++ch) /* skip spaces */
/* null statement */ ;