Changes in / [d2b3f25:fef97af]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
dcc.c
rd2b3f25 rfef97af 385 385 b_event_remove( df->watch_out ); 386 386 387 df->watch_in = 0;388 389 387 if( df->proto_finished ) 390 388 dcc_finish( ft ); 391 389 390 df->watch_in = 0; 392 391 return FALSE; 393 392 } -
lib/ftutil.c
rd2b3f25 rfef97af 138 138 139 139 /* I hate static-length strings.. */ 140 host[HOST_NAME_MAX -1] = '\0';140 host[HOST_NAME_MAX] = '\0'; 141 141 port[5] = '\0'; 142 142 -
lib/http_client.c
rd2b3f25 rfef97af 211 211 212 212 if( req->inpa > 0 ) 213 {214 213 b_event_remove( req->inpa ); 215 req->inpa = 0;216 }217 214 218 215 if( req->ssl ) -
protocols/jabber/s5bytestream.c
rd2b3f25 rfef97af 123 123 124 124 if ( tf->watch_in ) 125 {126 125 b_event_remove( tf->watch_in ); 127 tf->watch_in = 0;128 }129 126 130 127 if( tf->watch_out ) 131 {132 128 b_event_remove( tf->watch_out ); 133 tf->watch_out = 0;134 }135 129 136 130 g_free( bt->pseudoadr ); -
protocols/jabber/si.c
rd2b3f25 rfef97af 35 35 36 36 if ( tf->watch_in ) 37 {38 37 b_event_remove( tf->watch_in ); 39 tf->watch_in = 0;40 }41 38 42 39 jd->filetransfers = g_slist_remove( jd->filetransfers, tf );
Note: See TracChangeset
for help on using the changeset viewer.