mirror of
https://github.com/fluffle/goirc
synced 2025-07-10 23:39:23 +00:00
correct syntax errors from updating go to 4450:dd9bae5c7eac
This commit is contained in:
parent
7191dd9177
commit
6a8c1a13b2
3 changed files with 6 additions and 6 deletions
|
@ -83,7 +83,7 @@ func (conn *Conn) Connect(host, pass string) os.Error {
|
|||
|
||||
conn.io = bufio.NewReadWriter(
|
||||
bufio.NewReader(conn.sock),
|
||||
bufio.NewWriter(conn.sock)
|
||||
bufio.NewWriter(conn.sock),
|
||||
);
|
||||
go conn.send();
|
||||
go conn.recv();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue