소스 검색

ftp: fix OPTS UTF8 ON for Filezilla Server

Closes #77
mappu 9 년 전
부모
커밋
28c104197d
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      ftp.go

+ 7 - 0
ftp.go

@@ -186,6 +186,13 @@ func (c *ServerConn) setUTF8() error {
 		return err
 	}
 
+	// The ftpd "filezilla-server" has FEAT support for UTF8, but always returns
+	// "202 UTF8 mode is always enabled. No need to send this command." when
+	// trying to use it. That's OK
+	if code == StatusCommandNotImplemented {
+		return nil
+	}
+
 	if code != StatusCommandOK {
 		return errors.New(message)
 	}