repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 4a5dfcc3ace54de033f16503065831ed62433b2d:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 4a5dfcc3ace54de033f16503065831ed62433b2d
Author: Florian Westphal 
Date:   Fri Dec 31 11:32:20 2010 +0100

    channel: fix confusing "adding to invite list" debug output

    adding entries to ban list produced 'invite list' debug output...

diff --git a/src/ngircd/channel.c b/src/ngircd/channel.c
index edbbc38bee3412d0c336833f34393bebab5323c8..
index ..e49e5a9a6127cc3f34771af77af096fc6d951eb6 100644
--- a/src/ngircd/channel.c
+++ b/src/ngircd/channel.c
@@ -989,6 +989,7 @@ GLOBAL bool
 Channel_AddBan(CHANNEL *c, const char *mask )
 {
 	struct list_head *h = Channel_GetListBans(c);
+	LogDebug("Adding \"%s\" to \"%s\" %s list", mask, Channel_Name(c), "ban");
 	return Lists_Add(h, mask, false);
 }

@@ -997,6 +998,7 @@ GLOBAL bool
 Channel_AddInvite(CHANNEL *c, const char *mask, bool onlyonce)
 {
 	struct list_head *h = Channel_GetListInvites(c);
+	LogDebug("Adding \"%s\" to \"%s\" %s list", mask, Channel_Name(c), "invite");
 	return Lists_Add(h, mask, onlyonce);
 }

diff --git a/src/ngircd/lists.c b/src/ngircd/lists.c
index 363c62dbeae305cf460b3203bcf846afc2804037..
index ..58c5d160df0913199c98547973a48cc97a4f69f0 100644
--- a/src/ngircd/lists.c
+++ b/src/ngircd/lists.c
@@ -85,7 +85,6 @@ Lists_Add(struct list_head *header, const char *Mask, bool OnlyOnce )
 	newelem->next = e;
 	header->first = newelem;

-	LogDebug("Added \"%s\" to invite list", Mask);
 	return true;
 }

-----END OF PAGE-----