From 2d5edb8c4d56f75f4dab93929072cc2699ec5ccd Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 29 Jul 2001 05:32:38 +0000 Subject: [PATCH] /NAMES #channel_you're_not_joined doesn't print the "total of xx nick" line anymore - it was always just full of 0 and people thought it was a bug (it's a missing feature :). git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1679 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/irc/fe-events-numeric.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/fe-common/irc/fe-events-numeric.c b/src/fe-common/irc/fe-events-numeric.c index c0328c0b..15501767 100644 --- a/src/fe-common/irc/fe-events-numeric.c +++ b/src/fe-common/irc/fe-events-numeric.c @@ -92,11 +92,6 @@ static void event_end_of_names(IRC_SERVER_REC *server, const char *data) if (chanrec != NULL) fe_channels_nicklist(CHANNEL(chanrec), CHANNEL_NICKLIST_FLAG_ALL); - else { - printformat_module("fe-common/core", server, channel, - MSGLEVEL_CRAP, TXT_ENDOFNAMES, - channel, 0, 0, 0, 0); - } g_free(params); }