diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-17 16:53:14 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-17 16:53:14 +0000 |
commit | b14a618c0720e1d88080f965dfcd88c442bf1ce2 (patch) | |
tree | d771b5ce8240ad314fd632d23619375f16d2f6fa /modules/m_whowas.c | |
parent | 97ac9b317c007633d85416467d35b0772a153c6e (diff) |
- Removed extranous EmptyString() test
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2078 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_whowas.c')
-rw-r--r-- | modules/m_whowas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_whowas.c b/modules/m_whowas.c index e4fbb1f..4a70b55 100644 --- a/modules/m_whowas.c +++ b/modules/m_whowas.c @@ -47,7 +47,7 @@ whowas_do(struct Client *client_p, struct Client *source_p, int max = -1; const dlink_node *ptr = NULL; - if (parc > 3 && !EmptyString(parv[3])) + if (parc > 3) if (hunt_server(client_p, source_p, ":%s WHOWAS %s %s :%s", 3, parc, parv) != HUNTED_ISME) return; |