comparison src/protocols/msn/msn.c @ 3299:a184a80b1e15

[gaim-migrate @ 3317] fixed an ambiguity. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 03 Jun 2002 05:07:55 +0000
parents 56df4d1dcad5
children 1a1a4243a12c
comparison
equal deleted inserted replaced
3298:a3e8ab88ebd7 3299:a184a80b1e15
923 ap = g_new0(struct msn_add_permit, 1); 923 ap = g_new0(struct msn_add_permit, 1);
924 ap->user = g_strdup(user); 924 ap->user = g_strdup(user);
925 ap->friend = g_strdup(url_decode(friend)); 925 ap->friend = g_strdup(url_decode(friend));
926 ap->gc = gc; 926 ap->gc = gc;
927 927
928 g_snprintf(msg, sizeof(msg), _("The user %s (%s) wants to add you to their buddy list."), 928 g_snprintf(msg, sizeof(msg), _("The user %s (%s) wants to add %s to his or her buddy list."),
929 ap->user, url_decode(ap->friend)); 929 ap->user, url_decode(ap->friend), ap->gc->username);
930 930
931 do_ask_dialog(msg, ap, msn_accept_add, msn_cancel_add); 931 do_ask_dialog(msg, ap, msn_accept_add, msn_cancel_add);
932 } else if (!g_strncasecmp(buf, "BLP", 3)) { 932 } else if (!g_strncasecmp(buf, "BLP", 3)) {
933 char *type, *tmp = buf; 933 char *type, *tmp = buf;
934 934