diff options
author | Wilmer van der Gaast <wilmer@Jona.local> | 2005-11-18 13:41:58 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@Jona.local> | 2005-11-18 13:41:58 +0100 |
commit | c572dd67167c0365a5bf62899c31efd4f223acaa (patch) | |
tree | adaf621a5ab6809bfbc39a6ed62aabae76a6bb4d /protocols/yahoo/yahoo.c | |
parent | 2dff6f72604bc6e7232b215b229f8e7556608651 (diff) |
HTML stripping is optional again (but still safer than before 0.93), but now enabled by default.
Diffstat (limited to 'protocols/yahoo/yahoo.c')
-rw-r--r-- | protocols/yahoo/yahoo.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c index 8344fbf2..d7f7d1dc 100644 --- a/protocols/yahoo/yahoo.c +++ b/protocols/yahoo/yahoo.c @@ -850,8 +850,6 @@ void ext_yahoo_conf_userjoin( int id, char *who, char *room ) if( c ) add_chat_buddy( c, who ); - else if( set_getint( gc->irc, "debug" ) ) - serv_got_crap( gc, "Got ext_yahoo_conf_userjoin() from %s for unknown conference %s", who, room ); } void ext_yahoo_conf_userleave( int id, char *who, char *room ) @@ -863,8 +861,6 @@ void ext_yahoo_conf_userleave( int id, char *who, char *room ) if( c ) remove_chat_buddy( c, who, "" ); - else if( set_getint( gc->irc, "debug" ) ) - serv_got_crap( gc, "Got ext_yahoo_conf_userleave() from %s for unknown conference %s", who, room ); } void ext_yahoo_conf_message( int id, char *who, char *room, char *msg, int utf8 ) |