summaryrefslogtreecommitdiff
path: root/src/chanserv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chanserv.c')
-rw-r--r--src/chanserv.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/chanserv.c b/src/chanserv.c
index 8e700077b..988e94021 100644
--- a/src/chanserv.c
+++ b/src/chanserv.c
@@ -1742,21 +1742,6 @@ void cs_remove_nick(const NickCore * nc)
/*************************************************************************/
-/* Removes any reference to a bot */
-
-void cs_remove_bot(const BotInfo * bi)
-{
- int i;
- ChannelInfo *ci;
-
- for (i = 0; i < 256; i++)
- for (ci = chanlists[i]; ci; ci = ci->next)
- if (ci->bi == bi)
- ci->bi = NULL;
-}
-
-/*************************************************************************/
-
/* Return the ChannelInfo structure for the given channel, or NULL if the
* channel isn't registered. */