Browse Source

Handle multi-line 226 status code

Ludovic Fauvet 12 years ago
parent
commit
fb61796944
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ftp.go

+ 1 - 1
ftp.go

@@ -483,7 +483,7 @@ func (r *response) Read(buf []byte) (int, error) {
 // Close implements the io.Closer interface on a FTP data connection.
 func (r *response) Close() error {
 	err := r.conn.Close()
-	_, _, err2 := r.c.conn.ReadCodeLine(StatusClosingDataConnection)
+	_, _, err2 := r.c.conn.ReadResponse(StatusClosingDataConnection)
 	if err2 != nil {
 		err = err2
 	}