aboutsummaryrefslogtreecommitdiffstats
path: root/user.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-11-07 17:16:18 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-11-07 17:16:18 +0100
commit7b23afdeead5b873b3e1cfc5ab29ecbf35b8c0ac (patch)
tree975c4b3725525244353f722b60fef54b79628d92 /user.c
parentfe51bcf0ae238e6fde4400b3dd17ddf99f77ae2a (diff)
Migrate my pluginable branch to use Wilmers' branch as parent
Diffstat (limited to 'user.c')
-rw-r--r--user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/user.c b/user.c
index dc288c84..bd68d20b 100644
--- a/user.c
+++ b/user.c
@@ -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->protocol ) == 0 )
+ if( u->gc == gc && u->handle && handle_cmp( u->handle, handle, gc->prpl) == 0 )
break;
u = u->next;
}