From: Felix Morgner Date: Fri, 6 Feb 2015 12:24:26 +0000 (+0100) Subject: fixed debug logging X-Git-Url: http://git.code-monkey.de/?p=umurmur.git;a=commitdiff_plain;h=991ab346d12110f094696f5f249da9689247fd66 fixed debug logging --- diff --git a/src/ban.c b/src/ban.c index 4cc6318..c7ed670 100644 --- a/src/ban.c +++ b/src/ban.c @@ -107,9 +107,10 @@ void Ban_pruneBanned() list_iterate(itr, &banlist) { ban = list_get_entry(itr, ban_t, node); #ifdef DEBUG + char hexhash[41]; SSLi_hash2hex(ban->hash, hexhash); Log_debug("BL: User %s Reason: '%s' Hash: %s IP: %s Time left: %d", - ban->name, ban->reason, hexhash, Util_addressToString(&ban->address)), + ban->name, ban->reason, hexhash, Util_addressToString(&ban->address), ban->time + ban->duration - time(NULL)); #endif /* Duration of 0 = forever */