0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-02-18 09:40:12 +01:00

ircd: Fix log error.

This commit is contained in:
Jason Volk 2016-07-03 02:19:12 -07:00
parent 3ec073dc83
commit de800bd3d7

View file

@ -168,7 +168,7 @@ static void
log_va(const ilogfile dest, const unsigned int snomask, const char *const fmt, va_list ap)
{
FILE *const logfile = *log_table[dest].logfile;
if(!logfile && !snomask)
if(!logfile)
return;
char buf[BUFSIZE];