Changeset bdda9e9
- Timestamp:
- 2007-06-13T23:32:56Z (17 years ago)
- Branches:
- master
- Children:
- a3d5766
- Parents:
- 998b103
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r998b103 rbdda9e9 1224 1224 for( a = irc->accounts; a; a = a->next ) 1225 1225 { 1226 for( c = a->ic->groupchats; c && g_strcasecmp( c->channel, channel ) != 0; c = c->next ); 1227 if( c ) 1228 return c; 1226 if( a->ic == NULL ) 1227 continue; 1228 1229 c = a->ic->groupchats; 1230 while( c ) 1231 { 1232 if( c->channel && g_strcasecmp( c->channel, channel ) == 0 ) 1233 return c; 1234 1235 c = c->next; 1236 } 1229 1237 } 1230 1238
Note: See TracChangeset
for help on using the changeset viewer.