From f97882d2bb88b6811eb47dfb7febfa9e0d18bfb6 Mon Sep 17 00:00:00 2001 From: codemastr Date: Sun, 5 Nov 2000 20:29:54 +0000 Subject: [PATCH] fixed some bugs --- Changes | 1 + src/list.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Changes b/Changes index abf310075..210a839a9 100644 --- a/Changes +++ b/Changes @@ -684,3 +684,4 @@ - Moved lopt and whowas to anUser (saves 8 bytes for every server) - Removed aClient->history, not used (saves 4 bytes for every user/server) - Fixed compile error with SSL +- Fixed a /list and /quit bug diff --git a/src/list.c b/src/list.c index 179c708fb..82bceb433 100644 --- a/src/list.c +++ b/src/list.c @@ -188,6 +188,8 @@ anUser *make_user(cptr) user->invited = NULL; user->silence = NULL; user->server = NULL; + user->lopt = NULL; + user->whowas = NULL; user->virthost = MyMalloc(5); *user->virthost = '\0'; cptr->user = user;