diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-22 11:05:33 +0100 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2008-06-22 11:05:33 +0100 | 
| commit | c801d25cc574279566b35c3a9fce96962521670a (patch) | |
| tree | fba04121e1caab0aaf331edb840f57203f306ba2 | |
| parent | fb4e9a3f0edbabf932c310374b9eb5121c0dab7d (diff) | |
Fixed bug in [devel,394].
| -rw-r--r-- | protocols/oscar/oscar.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/protocols/oscar/oscar.c b/protocols/oscar/oscar.c index 819ec27d..1bd221b4 100644 --- a/protocols/oscar/oscar.c +++ b/protocols/oscar/oscar.c @@ -1030,7 +1030,7 @@ static int gaim_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...) {  			g_hash_table_insert(od->ips, uin, (gpointer) (long) info->icqinfo.ipaddr);  	} -	if (!aim_sncmp(tmp, normalize(info->sn))) +	if (!aim_sncmp(ic->acc->user, info->sn))  		g_snprintf(ic->displayname, sizeof(ic->displayname), "%s", info->sn);  	tmp = normalize(info->sn); | 
