diff --git a/ftp.go b/ftp.go index 7ad3ca1..89f5197 100644 --- a/ftp.go +++ b/ftp.go @@ -33,8 +33,8 @@ type TransferType string // The different transfer types const ( - TransferTypeBinary = "I" - TransferTypeASCII = "A" + TransferTypeBinary = TransferType("I") + TransferTypeASCII = TransferType("A") ) // Time format used by the MDTM and MFMT commands