ircd: Use a larger buffer for ilog() buf2
This commit is contained in:
parent
6769ac13a2
commit
b3a987ed15
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ ilog(ilogfile dest, const char *format, ...)
|
|||
{
|
||||
FILE *logfile = *log_table[dest].logfile;
|
||||
char buf[BUFSIZE];
|
||||
char buf2[BUFSIZE];
|
||||
char buf2[MAX_DATE_STRING + 1 + BUFSIZE + 1];
|
||||
va_list args;
|
||||
|
||||
if(logfile == NULL)
|
||||
|
|
Loading…
Reference in a new issue