comparison src/protocols/oscar/oscar.c @ 9647:687572cf09a6

[gaim-migrate @ 10495] (13:40:54) datallah: LSchiere2: http://www.butfer.com/gaim-patches/1001419_bugfix.patch should fix (13:40:54) datallah: 1001419 (the server.c change is optional at this point, but i think that the check should be done there) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 02 Aug 2004 17:50:53 +0000
parents b8aee06adc83
children 0a82c4662c0d
comparison
equal deleted inserted replaced
9646:535343d6ca13 9647:687572cf09a6
3901 #endif 3901 #endif
3902 3902
3903 /* Data is assumed to be the destination sn */ 3903 /* Data is assumed to be the destination sn */
3904 if (!gaim_conv_present_error(data, gaim_connection_get_account(gc), 3904 if (!gaim_conv_present_error(data, gaim_connection_get_account(gc),
3905 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("Your message did not get sent."))) { 3905 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("Your message did not get sent."))) {
3906 buf = g_strdup_printf(_("Your message to %s did not get sent:"), data); 3906 buf = g_strdup_printf(_("Your message to %s did not get sent:"), data ? data : "(null)");
3907 gaim_notify_error(sess->aux_data, NULL, buf, 3907 gaim_notify_error(sess->aux_data, NULL, buf,
3908 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); 3908 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given."));
3909 g_free(buf); 3909 g_free(buf);
3910 } 3910 }
3911 return 1; 3911 return 1;