Changeset 43462708 for protocols/jabber
- Timestamp:
- 2008-01-06T12:37:55Z (17 years ago)
- Branches:
- master
- Children:
- 181e47a, fc82be6
- Parents:
- 46dca11
- Location:
- protocols/jabber
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/iq.c
r46dca11 r43462708 54 54 !( s = xt_find_attr( c, "xmlns" ) ) ) 55 55 { 56 imcb_log( ic, "W ARNING: Received incomplete IQ-%s packet", type );56 imcb_log( ic, "Warning: Received incomplete IQ-%s packet", type ); 57 57 return XT_HANDLED; 58 58 } … … 125 125 !( s = xt_find_attr( c, "xmlns" ) ) ) 126 126 { 127 imcb_log( ic, "W ARNING: Received incomplete IQ-%s packet", type );127 imcb_log( ic, "Warning: Received incomplete IQ-%s packet", type ); 128 128 return XT_HANDLED; 129 129 } … … 147 147 else 148 148 { 149 imcb_log( ic, "W ARNING: %s tried to fake a roster push!", s ? s : "(unknown)" );149 imcb_log( ic, "Warning: %s tried to fake a roster push!", s ? s : "(unknown)" ); 150 150 151 151 xt_free_node( reply ); … … 212 212 if( !( query = xt_find_node( node->children, "query" ) ) ) 213 213 { 214 imcb_log( ic, "W ARNING: Received incomplete IQ packet while authenticating" );214 imcb_log( ic, "Warning: Received incomplete IQ packet while authenticating" ); 215 215 imc_logout( ic, FALSE ); 216 216 return XT_HANDLED; … … 270 270 if( !( type = xt_find_attr( node, "type" ) ) ) 271 271 { 272 imcb_log( ic, "W ARNING: Received incomplete IQ packet while authenticating" );272 imcb_log( ic, "Warning: Received incomplete IQ packet while authenticating" ); 273 273 imc_logout( ic, FALSE ); 274 274 return XT_HANDLED; … … 346 346 if( !( query = xt_find_node( node->children, "query" ) ) ) 347 347 { 348 imcb_log( ic, "W ARNING: Received NULL roster packet" );348 imcb_log( ic, "Warning: Received NULL roster packet" ); 349 349 return XT_HANDLED; 350 350 } -
protocols/jabber/jabber_util.c
r46dca11 r43462708 200 200 if( entry == NULL ) 201 201 { 202 imcb_log( ic, "W ARNING: Received %s-%s packet with unknown/expired ID %s!",202 imcb_log( ic, "Warning: Received %s-%s packet with unknown/expired ID %s!", 203 203 node->name, xt_find_attr( node, "type" ) ? : "(no type)", s ); 204 204 } -
protocols/jabber/presence.c
r46dca11 r43462708 50 50 { 51 51 if( set_getbool( &ic->irc->set, "debug" ) ) 52 imcb_log( ic, "W ARNING: Could not handle presence information from JID: %s", from );52 imcb_log( ic, "Warning: Could not handle presence information from JID: %s", from ); 53 53 return XT_HANDLED; 54 54 } … … 91 91 { 92 92 if( set_getbool( &ic->irc->set, "debug" ) ) 93 imcb_log( ic, "W ARNING: Received presence information from unknown JID: %s", from );93 imcb_log( ic, "Warning: Received presence information from unknown JID: %s", from ); 94 94 return XT_HANDLED; 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.