comparison src/protocols/msn/userlist.c @ 19812:d928bccffe4c

[gaim-migrate @ 16952] update for fail-safe check of Passport 3.0's Authentication committer: Ethan Blanton <elb@pidgin.im>
author Ma Yuan <mayuan2006@gmail.com>
date Mon, 21 Aug 2006 16:16:10 +0000
parents da1075366756
children a8d00b8dae40
comparison
equal deleted inserted replaced
19811:4c7aa3b07f42 19812:d928bccffe4c
88 pa = g_new0(MsnPermitAdd, 1); 88 pa = g_new0(MsnPermitAdd, 1);
89 pa->who = g_strdup(passport); 89 pa->who = g_strdup(passport);
90 pa->friendly = g_strdup(friendly); 90 pa->friendly = g_strdup(friendly);
91 pa->gc = gc; 91 pa->gc = gc;
92 92
93 if (friendly != NULL) 93 if (friendly != NULL){
94 {
95 msg = g_strdup_printf( 94 msg = g_strdup_printf(
96 _("The user %s (%s) wants to add %s to his or her " 95 _("The user %s (%s) wants to add %s to his or her "
97 "buddy list."), 96 "buddy list."),
98 passport, friendly, 97 passport, friendly,
99 gaim_account_get_username(gc->account)); 98 gaim_account_get_username(gc->account));
100 } 99 }else{
101 else
102 {
103 msg = g_strdup_printf( 100 msg = g_strdup_printf(
104 _("The user %s wants to add %s to his or " 101 _("The user %s wants to add %s to his or "
105 "her buddy list."), 102 "her buddy list."),
106 passport, gaim_account_get_username(gc->account)); 103 passport, gaim_account_get_username(gc->account));
107 } 104 }