Changes in / [6e68a52:debc281]
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/events_glib.c
r6e68a52 rdebc281 48 48 typedef struct _GaimIOClosure { 49 49 b_event_handler function; 50 guint result; 50 51 gpointer data; 51 52 } GaimIOClosure; … … 100 101 GIOChannel *channel; 101 102 GIOCondition cond = 0; 102 int st;103 103 104 104 closure->function = function; … … 111 111 112 112 channel = g_io_channel_unix_new(source); 113 st = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, cond,114 113 closure->result = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, cond, 114 gaim_io_invoke, closure, gaim_io_destroy); 115 115 116 event_debug( "b_input_add( %d, %d, 0x%x, 0x%x ) = %d ( %p)\n", source, condition, function, data, st, closure );116 event_debug( "b_input_add( %d, %d, 0x%x, 0x%x ) = %d (0x%x)\n", source, condition, function, data, closure->result, closure ); 117 117 118 118 g_io_channel_unref(channel); 119 return st;119 return closure->result; 120 120 } 121 121 -
protocols/msn/sb.c
r6e68a52 rdebc281 491 491 } 492 492 } 493 else if( strcmp( cmd[0], "NAK" ) == 0 )494 {495 if( sb->who )496 {497 imcb_log( ic, "The MSN servers could not deliver one of your messages to %s.", sb->who );498 }499 else500 {501 imcb_log( ic, "The MSN servers could not deliver one of your groupchat messages to all participants." );502 }503 }504 493 else if( strcmp( cmd[0], "BYE" ) == 0 ) 505 494 {
Note: See TracChangeset
for help on using the changeset viewer.