diff options
Diffstat (limited to 'src/nickserv.c')
-rw-r--r-- | src/nickserv.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nickserv.c b/src/nickserv.c index 27dfc31ef..d0a53bd72 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -4015,11 +4015,9 @@ static int do_ghost(User * u) char buf[NICKMAX + 32]; snprintf(buf, sizeof(buf), "GHOST command used by %s", u->nick); -#ifndef STREAMLINED if (LimitSessions) { del_session(u2->host); } -#endif kill_user(s_NickServ, nick, buf); notice_lang(s_NickServ, u, NICK_GHOST_KILLED, nick); } else { @@ -4037,11 +4035,9 @@ static int do_ghost(User * u) char buf[NICKMAX + 32]; snprintf(buf, sizeof(buf), "GHOST command used by %s", u->nick); -#ifndef STREAMLINED if (LimitSessions) { del_session(u2->host); } -#endif kill_user(s_NickServ, nick, buf); notice_lang(s_NickServ, u, NICK_GHOST_KILLED, nick); } else { |