diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-01 22:54:39 -0400 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-04-01 22:54:39 -0400 |
commit | 231b08b07a2807881da1327408e33855370b7b95 (patch) | |
tree | 67aa56a2b8585e2f286eb3eb6a7eeff029de61e1 /protocols/bee_user.c | |
parent | fb117aee274bccfb6528288599ef81fe72191e12 (diff) |
Show buddy online/offline status in the first channel.
Diffstat (limited to 'protocols/bee_user.c')
-rw-r--r-- | protocols/bee_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/bee_user.c b/protocols/bee_user.c index 2c11ca1d..cbcebe33 100644 --- a/protocols/bee_user.c +++ b/protocols/bee_user.c @@ -74,7 +74,7 @@ bee_user_t *bee_user_by_handle( bee_t *bee, struct im_connection *ic, const char { bee_user_t *bu = l->data; - if( bu->ic == ic && ic->acc->prpl->handle_cmp( bu->handle, handle ) ) + if( bu->ic == ic && ic->acc->prpl->handle_cmp( bu->handle, handle ) == 0 ) return bu; } |