[ 
https://issues.apache.org/jira/browse/VFS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebb updated VFS-319:
---------------------

    Description: 
Looks like a cut-and-paste typo - the following:

{code}
 public void setFtpsType(FileSystemOptions opts, String ftpsType) {
    setParam(opts, USER_DIR_IS_ROOT, ftpsType);
  }
{code}

should surely be

{code}
 public void setFtpsType(FileSystemOptions opts, String ftpsType) {
    setParam(opts, FTPS_TYPE, ftpsType);
  }
{code}


  was:
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}



Oops, cut and pasted wrong section in JIRA ;-)

> 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, USER_DIR_IS_ROOT, ftpsType);
>   }
> {code}
> should surely be
> {code}
>  public void setFtpsType(FileSystemOptions opts, String ftpsType) {
>     setParam(opts, FTPS_TYPE, ftpsType);
>   }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to