# HG changeset patch # User Mark Doliner # Date 1070749771 0 # Node ID 2176fef95d9bef3a63da1beb49d9ee3f07b7b966 # Parent 7ab3d01d2c5081939db466aef7a690db9a246869 [gaim-migrate @ 8426] Some debugging lines or something committer: Tailor Script diff -r 7ab3d01d2c50 -r 2176fef95d9b src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sat Dec 06 21:58:46 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sat Dec 06 22:29:31 2003 +0000 @@ -3038,12 +3038,14 @@ destn = va_arg(ap, char *); va_end(ap); - if (destn != NULL) { + if (destn == NULL) + buf = g_strdup_printf("Locate family error with no name, tell KingAnt you got this message!"); + else buf = g_strdup_printf(_("User information for %s unavailable:"), destn); - gaim_notify_error(sess->aux_data, NULL, buf, - (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); - g_free(buf); - } + + gaim_notify_error(sess->aux_data, NULL, buf, + (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); + g_free(buf); return 1; }