Changeset 3e6764a for protocols/jabber
- Timestamp:
- 2008-06-21T23:34:11Z (16 years ago)
- Branches:
- master
- Children:
- 98de2cc
- Parents:
- edc767b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber_util.c
redc767b r3e6764a 525 525 matches), removing it is simple. (And the hash reference 526 526 should be removed too!) */ 527 if( bud->next == NULL && ( ( s == NULL || bud->resource == NULL ) || g_strcasecmp( bud->resource, s + 1 ) == 0 ) ) 527 if( bud->next == NULL && 528 ( ( s == NULL && bud->resource == NULL ) || 529 ( bud->resource && s && g_strcasecmp( bud->resource, s + 1 ) == 0 ) ) ) 528 530 { 529 531 g_hash_table_remove( jd->buddies, bud->bare_jid );
Note: See TracChangeset
for help on using the changeset viewer.