diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 21:54:22 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 21:54:22 +0000 |
commit | f70f57219f010962cef8779734deefc1ef355913 (patch) | |
tree | b5eb5a539024bf9213a2b5433bf7ca3cf356cdf5 /src/messages.c | |
parent | 0464e2eb14e0c5becc7ebeb7f494f7941d556ca9 (diff) |
Merge commit 'trunk' into anopeng
Conflicts:
src/process.c
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1279 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r-- | src/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages.c b/src/messages.c index db81fdc80..6b119bd8f 100644 --- a/src/messages.c +++ b/src/messages.c @@ -136,7 +136,7 @@ int m_privmsg(const char *source, const char *receiver, const char *msg) /* Check if we should ignore. Operators always get through. */ if (allow_ignore && !is_oper(u)) { IgnoreData *ign = get_ignore(source); - if (ign && ign->time > time(NULL)) { + if (ign) { alog("Ignored message from %s: \"%s\"", source, inbuf); return MOD_CONT; } |