diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 19:58:44 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-22 19:58:44 -0700 |
commit | 0e7ab64dfb66192a875c37322ca6f8a364ec5bc8 (patch) | |
tree | 93e010a079632973a1e101ad0b85e4af67923643 /irc.h | |
parent | 43671b964b636520a54e343542c5958b30e9f589 (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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |