1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-23 07:53:22 +00:00

Another minor indexing bug :-/

This commit is contained in:
Alex Bramley 2011-09-09 23:04:12 +01:00
parent ff855691cf
commit 8ae5fe3b75

View file

@ -196,7 +196,7 @@ func (conn *Conn) h_311(line *Line) {
if n := conn.GetNick(line.Args[1]); n != nil {
n.Ident = line.Args[2]
n.Host = line.Args[3]
n.Name = line.Args[4]
n.Name = line.Args[5]
} else {
conn.error("irc.311(): buh? received WHOIS info for unknown nick %s", line.Args[1])
}