diff options
author | Berke Viktor <bviktor@hexchat.org> | 2013-04-14 13:11:35 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2013-04-14 13:11:35 +0200 |
commit | b407bfa168e198acc7f9931754a06781f45824d7 (patch) | |
tree | ee587a9cde117c46cb32fd0d99619a125bfcbdd5 /src/common/proto-irc.c | |
parent | 069a6adb190acf84a27bad9b2049378bebf19671 (diff) |
Fix missing first letter in busy server error popup
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index dbbd8e06..7d9b6382 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -519,7 +519,7 @@ process_numeric (session * sess, int n, if (fe_is_chanwindow (sess->server)) { fe_chan_list_end (sess->server); - fe_message (word_eol[4] + 1, FE_MSG_ERROR); + fe_message (word_eol[4], FE_MSG_ERROR); } goto def; |