Typo in FtpsFileSystemConfigBuilder.setFtpsType
-----------------------------------------------
Key: VFS-319
URL: https://issues.apache.org/jira/browse/VFS-319
Project: Commons VFS
Issue Type: Bug
Reporter: Sebb
Looks like a cut-and-paste typo - the following:
{code}
public void setFtpsType(FileSystemOptions opts, String ftpsType) {
setParam(opts, FTPS_TYPE, ftpsType);
}
{code}
should surely be
{code}
public void setFtpsType(FileSystemOptions opts, String ftpsType) {
setParam(opts, USER_DIR_IS_ROOT, ftpsType);
}
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.