From d070ec08ab92cb60f6d0cb7375cebfc747c1ec0f Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Thu, 14 Aug 2008 23:43:07 +0200 Subject: [PATCH] numeric.c: whitespace fixes ... --- src/ngircd/numeric.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/ngircd/numeric.c b/src/ngircd/numeric.c index d22bf3ae..fc7bef82 100644 --- a/src/ngircd/numeric.c +++ b/src/ngircd/numeric.c @@ -89,7 +89,6 @@ Announce_User(CLIENT * Client, CLIENT * User) Client_Hostname(User), Client_ID(Client_Introducer(User)), Client_Info(User)); - } else { /* RFC 2813 mode: one combined NICK command */ return IRC_WriteStrClient(Client, "NICK %s %d %s %s %d +%s :%s", @@ -158,20 +157,20 @@ Send_CHANINFO(CLIENT * Client, CHANNEL * Chan) { char *modes, *topic; bool has_k, has_l; - + #ifdef DEBUG Log(LOG_DEBUG, "Sending CHANINFO commands ..."); #endif - + modes = Channel_Modes(Chan); topic = Channel_Topic(Chan); - + if (!*modes && !*topic) return CONNECTED; - + has_k = strchr(modes, 'k') != NULL; has_l = strchr(modes, 'l') != NULL; - + /* send CHANINFO */ if (!has_k && !has_l) { if (!*topic) { -- 2.39.2