You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2010/09/21 15:27:33 UTC

[jira] Updated: (VFS-319) Typo in FtpsFileSystemConfigBuilder.setFtpsType

     [ 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.