From: Eric W. <war...@us...> - 2001-12-04 04:51:58
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv15460 Modified Files: proxy.c Log Message: it's quite possible Index: proxy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/proxy.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- proxy.c 2001/11/26 20:15:59 1.33 +++ proxy.c 2001/12/04 04:51:55 1.34 @@ -77,8 +77,10 @@ if (condition & GAIM_WRITE_COND) gaim_cond |= GAIM_INPUT_WRITE; + /* debug_printf("CLOSURE: callback for %d, fd is %d\n", closure->result, g_io_channel_unix_get_fd(source)); + */ closure->function(closure->data, g_io_channel_unix_get_fd(source), gaim_cond); @@ -103,7 +105,7 @@ closure->result = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, cond, gaim_io_invoke, closure, gaim_io_destroy); - debug_printf("CLOSURE: adding input watcher %d for fd %d\n", closure->result, source); + /* debug_printf("CLOSURE: adding input watcher %d for fd %d\n", closure->result, source); */ g_io_channel_unref(channel); return closure->result; @@ -111,7 +113,7 @@ void gaim_input_remove(gint tag) { - debug_printf("CLOSURE: removing input watcher %d\n", tag); + /* debug_printf("CLOSURE: removing input watcher %d\n", tag); */ if (tag > 0) g_source_remove(tag); } |