From: Remco Rijnders Date: Sun, 5 Jul 2009 06:01:37 +0000 (+0200) Subject: Fixed compile time error. X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=13216269d3be0fa537aca170ee2474b7818bed7c;p=serene-ircd.git Fixed compile time error. --- diff --git a/src/channel.c b/src/channel.c index 167fe1c..525b481 100644 --- a/src/channel.c +++ b/src/channel.c @@ -3956,7 +3956,8 @@ int m_list (cptr, sptr, parc, parv) * 1 person on, to decrease floods... -Donwulff */ bzero (lopt, sizeof (LOpts)); /* To be sure! */ - lopt->next = (LOpts *) lopt->yeslist = lopt->nolist = (Link *) NULL; + lopt->next = (LOpts *) NULL; + lopt->yeslist = lopt->nolist = (Link *) NULL; lopt->usermin = 0; /* Default */ lopt->usermax = -1; lopt->chantimemax = lopt->topictimemax = currenttime + 86400;