diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 18:46:16 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 18:46:16 +0000 |
commit | 8302af8e8a51b1489ecf40970c02bfb828cf1106 (patch) | |
tree | 6004b4ea8d2a00745c5b5bb4f6ddf911db43934a /include | |
parent | fb044a78b11216565ac80ebf148a6e5fa4badd3c (diff) |
Someone left the colon off the 'end of list' numeric in u_listmode.h. I dont know what clients this might break
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6328 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/u_listmode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/u_listmode.h b/include/u_listmode.h index eeda2dd8d..28c364698 100644 --- a/include/u_listmode.h +++ b/include/u_listmode.h @@ -126,7 +126,7 @@ class ListModeBase : public ModeHandler user->WriteServ("%s %s %s %s %s %s", listnumeric.c_str(), user->nick, channel->name, it->mask.c_str(), it->nick.c_str(), it->time.c_str()); } } - user->WriteServ("%s %s %s %s", endoflistnumeric.c_str(), user->nick, channel->name, endofliststring.c_str()); + user->WriteServ("%s %s %s :%s", endoflistnumeric.c_str(), user->nick, channel->name, endofliststring.c_str()); } virtual void RemoveMode(chanrec* channel) |