comparison src/protocols/oscar/oscar.c @ 7793:61b5d682ddb4

[gaim-migrate @ 8439] At least I know the error is still there. Stupid error. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 07 Dec 2003 20:09:06 +0000
parents 2176fef95d9b
children 5f0bb52c0609
comparison
equal deleted inserted replaced
7792:27f55b264446 7793:61b5d682ddb4
3037 reason = (fu16_t) va_arg(ap, unsigned int); 3037 reason = (fu16_t) va_arg(ap, unsigned int);
3038 destn = va_arg(ap, char *); 3038 destn = va_arg(ap, char *);
3039 va_end(ap); 3039 va_end(ap);
3040 3040
3041 if (destn == NULL) 3041 if (destn == NULL)
3042 buf = g_strdup_printf("Locate family error with no name, tell KingAnt you got this message!"); 3042 return 1;
3043 else 3043
3044 buf = g_strdup_printf(_("User information for %s unavailable:"), destn); 3044 buf = g_strdup_printf(_("User information for %s unavailable:"), destn);
3045 3045
3046 gaim_notify_error(sess->aux_data, NULL, buf, 3046 gaim_notify_error(sess->aux_data, NULL, buf,
3047 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); 3047 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given."));
3048 g_free(buf); 3048 g_free(buf);
3049 3049