diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-11-15 15:57:38 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-11-15 15:57:38 +0100 |
commit | c998255d6aa501281c6266a5f1dce69d4c3afab4 (patch) | |
tree | 568b030ce04c4eba6e52cf7c162d0ed0784f3108 /user.c | |
parent | b135438c4c6aeb5a7cd3403f0cf37e741d589cd3 (diff) | |
parent | 9cb9868256c51a45983aac894428230de6035d79 (diff) |
Merge from Jelmer
Diffstat (limited to 'user.c')
-rw-r--r-- | user.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -145,7 +145,7 @@ user_t *user_findhandle( struct gaim_connection *gc, char *handle ) while( u ) { - if( u->gc == gc && u->handle && handle_cmp( u->handle, handle, gc->prpl) == 0 ) + if( u->gc == gc && u->handle && gc->prpl->cmp_buddynames ( u->handle, handle ) == 0 ) break; u = u->next; } |