Fix a bug that prevented adding multiple handlers

This commit is contained in:
raylu 2010-10-15 18:06:51 -04:00 committed by Alex Bramley
parent 7515f11470
commit 036cc4c3eb
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ func (conn *Conn) AddHandler(name string, f func(*Conn, *Line)) {
}
e = e[0 : len(e)+1]
e[len(e)-1] = f
conn.events[n] = e
} else {
e := make([]func(*Conn, *Line), 1, 10)
e[0] = f