summaryrefslogtreecommitdiff
path: root/src/fe-common/irc/fe-events-numeric.c
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@irssi.org>2007-05-20 19:29:38 +0000
committerjilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564>2007-05-20 19:29:38 +0000
commitbf937e5e69d0d858f56cc6c87ee3731690435aaf (patch)
tree71e6f7e66ae25a0a663172760629b6c091a88ef4 /src/fe-common/irc/fe-events-numeric.c
parent433c3795aeeab5913ce0297ba25af14892e8517e (diff)
downloadirssi-bf937e5e69d0d858f56cc6c87ee3731690435aaf.zip
Fix recognition of realnames starting with spaces in /who replies.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4507 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/fe-events-numeric.c')
-rw-r--r--src/fe-common/irc/fe-events-numeric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/irc/fe-events-numeric.c b/src/fe-common/irc/fe-events-numeric.c
index bf05f45f..c69a4238 100644
--- a/src/fe-common/irc/fe-events-numeric.c
+++ b/src/fe-common/irc/fe-events-numeric.c
@@ -115,8 +115,8 @@ static void event_who(IRC_SERVER_REC *server, const char *data)
/* split hops/realname */
hops = realname;
while (*realname != '\0' && *realname != ' ') realname++;
- while (*realname == ' ') realname++;
- if (realname > hops) realname[-1] = '\0';
+ if (*realname == ' ')
+ *realname++ = '\0';
printformat(server, NULL, MSGLEVEL_CRAP, IRCTXT_WHO,
channel, nick, stat, hops, user, host, realname, serv);