From ada71328a984fa145ddb27c8e6f2ca80dbb9524e Mon Sep 17 00:00:00 2001 From: "trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sun, 19 Dec 2004 17:42:17 +0000 Subject: BUILD : 1.7.6 (489) BUGS : 244, 246, 247, 248, 249, 250, 251, 252, 254, 255 NOTES : 1. In some cases READONLY was not respected, and data was saved. 2. Corrected a few mistakes in example.conf. 3. Wrong column type in tables.sql for nick alias status fiag. 4. listchans and listnicks work under Cygwin. 5. NickRegDelay no longer accepts negative values. 6. -is44 option not show if converter not built. 7. Removed #ifndef STREAMLINE from the code as its no longer set during build time 8. MS MAX LIMIT was set incorrectly 9. Segfault if USERDB enabled and tables does not exist 10. Provides clear message of SUPERADMIN is not enabled git-svn-id: svn://svn.anope.org/anope/trunk@489 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@343 5417fbe8-f217-4b02-8779-1006273d7864 --- src/users.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/users.c') diff --git a/src/users.c b/src/users.c index e807cb012..1417fd936 100644 --- a/src/users.c +++ b/src/users.c @@ -489,11 +489,9 @@ User *do_nick(const char *source, char *nick, char *username, char *host, if (check_szline(nick, ipbuf)) return NULL; } -#ifndef STREAMLINED /* Now check for session limits */ if (LimitSessions && !add_session(nick, host)) return NULL; -#endif /* And finally, for proxy ;) */ #ifdef USE_THREADS @@ -722,11 +720,9 @@ void do_quit(const char *source, int ac, char **av) free(na->last_quit); na->last_quit = *av[0] ? sstrdup(av[0]) : NULL; } -#ifndef STREAMLINED if (LimitSessions) { del_session(user->host); } -#endif delete_user(user); } @@ -760,11 +756,9 @@ void do_kill(char *nick, char *msg) na->last_quit = *msg ? sstrdup(msg) : NULL; } -#ifndef STREAMLINED if (LimitSessions) { del_session(user->host); } -#endif delete_user(user); } -- cgit