projects
/
serene-ircd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a5e6e4
)
Fixed compile time error.
author
Remco Rijnders
<remco@webconquest.com>
Sun, 5 Jul 2009 06:01:37 +0000
(08:01 +0200)
committer
Remco Rijnders
<remco@webconquest.com>
Sun, 5 Jul 2009 06:01:37 +0000
(08:01 +0200)
src/channel.c
patch
|
blob
|
history
diff --git
a/src/channel.c
b/src/channel.c
index 167fe1c809c60f387c40a7a7d05f04a50456b6fe..525b4811a2459644163de8c52aaa58159d672f5f 100644
(file)
--- 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;