Changeset 21782b3
- Timestamp:
- 2007-02-18T22:52:48Z (18 years ago)
- Branches:
- master
- Children:
- d4589cb
- Parents:
- dcf0f3e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/presence.c
rdcf0f3e r21782b3 40 40 if( !( bud = jabber_buddy_by_jid( gc, from, GET_BUDDY_EXACT | GET_BUDDY_CREAT ) ) ) 41 41 { 42 serv_got_crap( gc, "WARNING: Could not handle presence information from JID: %s", from ); 42 if( set_getbool( &gc->irc->set, "debug" ) ) 43 serv_got_crap( gc, "WARNING: Could not handle presence information from JID: %s", from ); 43 44 return XT_HANDLED; 44 45 } … … 72 73 if( jabber_buddy_by_jid( gc, from, GET_BUDDY_EXACT ) == NULL ) 73 74 { 74 serv_got_crap( gc, "WARNING: Received presence information from unknown JID: %s", from ); 75 if( set_getbool( &gc->irc->set, "debug" ) ) 76 serv_got_crap( gc, "WARNING: Received presence information from unknown JID: %s", from ); 75 77 return XT_HANDLED; 76 78 }
Note: See TracChangeset
for help on using the changeset viewer.