diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-12 15:18:55 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-12 15:18:55 +0100 |
commit | 06045f66c05241edc13df7652a40f30d15e9f786 (patch) | |
tree | 0e2e729f95b577492df3d2ad23e6fd72503fe37c /protocols/nogaim.c | |
parent | 53575255afa4172cbb089124b32ce7af74a1d3c2 (diff) |
Fixed inconsistency (in fact stupidity) in do_error_dialog().
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 97aa30cf..dee89a5e 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -406,7 +406,7 @@ void signoff( struct gaim_connection *gc ) void do_error_dialog( struct gaim_connection *gc, char *msg, char *title ) { - irc_usermsg( gc->irc, "%s(%s) - Error: %s", gc->username, title, msg ); + irc_usermsg( gc->irc, "%s(%s) - Error: %s", proto_name[gc->protocol], gc->username, msg ); } void do_ask_dialog( struct gaim_connection *gc, char *msg, void *data, void *doit, void *dont ) |