diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-21 09:12:22 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-03-21 09:12:22 +0100 |
commit | aefa533eb48587d9f509a8dcab358061b72c7b3b (patch) | |
tree | 269b4625750f1ae7b366085e8487906fd2096d8a /protocols | |
parent | 1ad104ab06fe3f7db1b55cc178e92e43cbda9d95 (diff) |
Added a special +b usermode for easier parseability of some things.
(For now blist and qlist, but more should come)
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/oscar/oscar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/oscar/oscar.c b/protocols/oscar/oscar.c index 7f5c0fc3..97384afb 100644 --- a/protocols/oscar/oscar.c +++ b/protocols/oscar/oscar.c @@ -1149,7 +1149,7 @@ static void gaim_icq_authask(struct gaim_connection *gc, guint32 uin, char *msg) if (strlen(msg) > 6) reason = msg + 6; - dialog_msg = g_strdup_printf("The user %u wants to add you to their buddy list for the following reason:\n\n%s", uin, reason ? reason : "No reason given."); + dialog_msg = g_strdup_printf("The user %u wants to add you to their buddy list for the following reason: %s", uin, reason ? reason : "No reason given."); data->gc = gc; data->uin = uin; do_ask_dialog(gc, dialog_msg, data, gaim_icq_authgrant, gaim_icq_authdeny); |