Changeset b8b8c6c for protocols/events_libevent.c
- Timestamp:
- 2006-05-15T09:19:46Z (19 years ago)
- Branches:
- master
- Children:
- 7a685f1
- Parents:
- 5330e3d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/events_libevent.c
r5330e3d rb8b8c6c 229 229 properly before closing a socket. */ 230 230 231 if( b_ev = g_hash_table_lookup( read_hash, &fd) )231 if( ( b_ev = g_hash_table_lookup( read_hash, &fd ) ) ) 232 232 { 233 233 event_debug( "Warning: fd %d still had a read event handler when shutting down.\n", fd ); 234 234 b_event_remove( b_ev->id ); 235 235 } 236 if( b_ev = g_hash_table_lookup( write_hash, &fd) )236 if( ( b_ev = g_hash_table_lookup( write_hash, &fd ) ) ) 237 237 { 238 238 event_debug( "Warning: fd %d still had a write event handler when shutting down.\n", fd );
Note: See TracChangeset
for help on using the changeset viewer.