summary refs log tree commit diff stats
path: root/src/common/proto-irc.c
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-04-03 18:28:00 -0300
committerTingPing <tngpng@gmail.com>2013-04-03 18:28:00 -0300
commit3706b51159027df564f96fbbc434ca60d7713481 (patch)
tree9b59dc158c5da3272f9effb73d72e5c6b2ec5315 /src/common/proto-irc.c
parentb4c8d53394d11ecd39826e284cf6b57e98528d08 (diff)
Fix realname
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r--src/common/proto-irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c
index 6eb7c58c..db770511 100644
--- a/src/common/proto-irc.c
+++ b/src/common/proto-irc.c
@@ -743,7 +743,7 @@ process_numeric (session * sess, int n,
 
 				/* :server 354 yournick 152 #channel ~ident host servname nick H account :realname */
 				inbound_user_info (sess, word[5], word[6], word[7], word[8],
-									 word[9], word_eol[12], word[11], away);
+									 word[9], word_eol[12]+1, word[11], away);
 
 				/* try to show only user initiated whos */
 				if (!who_sess || !who_sess->doing_who)