aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-22 19:58:44 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-22 19:58:44 -0700
commit0e7ab64dfb66192a875c37322ca6f8a364ec5bc8 (patch)
tree93e010a079632973a1e101ad0b85e4af67923643 /irc.h
parent43671b964b636520a54e343542c5958b30e9f589 (diff)
Got rid of one HORRIBLE stupidity called chat_by_channel(), which still
used the GLOBAL IM connections list, allowing user A to interfere with user B's groupchats if running in daemon mode. I can't believe this was still there...
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index 5b770180..8be3579e 100644
--- a/irc.h
+++ b/irc.h
@@ -139,5 +139,6 @@ int irc_msgfrom( irc_t *irc, char *nick, char *msg );
int irc_noticefrom( irc_t *irc, char *nick, char *msg );
void buddy_send_handler( irc_t *irc, user_t *u, char *msg, int flags );
+struct groupchat *irc_chat_by_channel( irc_t *irc, char *channel );
#endif