From daf6cba195a1d64befc3cc07d3bb50fb63aa23fe Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Mon, 6 May 2013 05:59:14 +0000 Subject: [PATCH] - Typo fix --- src/modules/m_whois.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_whois.c b/src/modules/m_whois.c index f6c02dc68..3eeb0fe9e 100644 --- a/src/modules/m_whois.c +++ b/src/modules/m_whois.c @@ -173,7 +173,7 @@ DLLFUNC int m_whois(aClient *cptr, aClient *sptr, int parc, char *parv[]) IsHidden(acptr) ? user->virthost : user->realhost, acptr->info); - if ((IsOper(sptr) || (acptr == sptr)) + if (IsOper(sptr) || acptr == sptr) { char sno[512]; strcpy(sno, get_sno_str(acptr));