From f756f2b394fa286919e5d5c0f63d7be3824bfb34 Mon Sep 17 00:00:00 2001 From: rburchell Date: Mon, 16 Feb 2009 22:59:36 +0000 Subject: [PATCH] Fix compile warning. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2100 5417fbe8-f217-4b02-8779-1006273d7864 --- src/nickserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nickserv.c b/src/nickserv.c index a9d2d8e3a..73bdc2cf2 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -1111,7 +1111,7 @@ int delnick(NickAlias * na) /* Second thing to do: look for an user using the alias * being deleted, and make appropriate changes */ - if (u = finduser(na->nick)) + if ((u = finduser(na->nick))) { if (ircd->modeonunreg) common_svsmode(finduser(na->nick), ircd->modeonunreg, "1");