Changeset 43462708
- Timestamp:
- 2008-01-06T12:37:55Z (17 years ago)
- Branches:
- master
- Children:
- 181e47a, fc82be6
- Parents:
- 46dca11
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r46dca11 r43462708 454 454 455 455 if [ "$protocols" = "PROTOCOLS = " ]; then 456 echo "W ARNING: You haven't selected any communication protocol to compile!"456 echo "Warning: You haven't selected any communication protocol to compile!" 457 457 echo " BitlBee will run, but you will be unable to connect to IM servers!" 458 458 fi -
irc.c
r46dca11 r43462708 326 326 { 327 327 if( irc->status & USTATUS_LOGGED_IN ) 328 irc_usermsg( irc, "E RROR: Charset mismatch detected. The charset "328 irc_usermsg( irc, "Error: Charset mismatch detected. The charset " 329 329 "setting is currently set to %s, so please make " 330 330 "sure your IRC client will send and accept text in " -
nick.c
r46dca11 r43462708 111 111 int i; 112 112 113 irc_usermsg( acc->irc, "W ARNING: Almost had an infinite loop in nick_get()! "113 irc_usermsg( acc->irc, "Warning: Almost had an infinite loop in nick_get()! " 114 114 "This used to be a fatal BitlBee bug, but we tried to fix it. " 115 115 "This message should *never* appear anymore. " -
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 } -
protocols/msn/msn_util.c
r46dca11 r43462708 352 352 m = l->data; 353 353 ret = g_string_sized_new( 1024 ); 354 g_string_printf( ret, "W ARNING: Cleaning up MSN (switchboard) connection with unsent "354 g_string_printf( ret, "Warning: Cleaning up MSN (switchboard) connection with unsent " 355 355 "messages to %s:", m->who ? m->who : "unknown recipient" ); 356 356 -
protocols/oscar/service.c
r46dca11 r43462708 894 894 */ 895 895 } else 896 imcb_error(sess->aux_data, "W ARNING: unknown hash request");896 imcb_error(sess->aux_data, "Warning: unknown hash request"); 897 897 898 898 } -
protocols/oscar/txqueue.c
r46dca11 r43462708 80 80 81 81 if (!fr->conn) { 82 imcb_error(sess->aux_data, "W ARNING: enqueueing packet with no connection");82 imcb_error(sess->aux_data, "Warning: enqueueing packet with no connection"); 83 83 fr->conn = aim_getconn_type(sess, AIM_CONN_TYPE_BOS); 84 84 }
Note: See TracChangeset
for help on using the changeset viewer.