Commit df7b93c1 authored by Emil Hessman's avatar Emil Hessman Committed by Rob Pike

net/textproto: use ReadDotBytes instead of non-existent ReadDotAll.

Fixes #5893.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/13086043
parent 20eb4cba
......@@ -105,7 +105,7 @@ func Dial(network, addr string) (*Conn, error) {
// if _, _, err = c.ReadCodeLine(110); err != nil {
// return nil, err
// }
// text, err := c.ReadDotAll()
// text, err := c.ReadDotBytes()
// if err != nil {
// return nil, err
// }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment