You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/11/03 14:54:29 UTC

svn commit: r1197120 - in /commons/proper/vfs/trunk: core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java src/changes/changes.xml

Author: ggregory
Date: Thu Nov  3 13:54:29 2011
New Revision: 1197120

URL: http://svn.apache.org/viewvc?rev=1197120&view=rev
Log:
[VFS-380] FTP connect.error message used instead of SFTP connect.error message

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java
    commons/proper/vfs/trunk/src/changes/changes.xml

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java?rev=1197120&r1=1197119&r2=1197120&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java Thu Nov  3 13:54:29 2011
@@ -206,7 +206,7 @@ public final class FtpsClientFactory
             }
             catch (final Exception exc)
             {
-                throw new FileSystemException("vfs.provider.ftp/connect.error", new Object[]{hostname}, exc);
+                throw new FileSystemException("vfs.provider.sftp/connect.error", new Object[]{hostname}, exc);
             }
         }
     }

Modified: commons/proper/vfs/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1197120&r1=1197119&r2=1197120&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/changes/changes.xml (original)
+++ commons/proper/vfs/trunk/src/changes/changes.xml Thu Nov  3 13:54:29 2011
@@ -23,6 +23,9 @@
 
   <body>
     <release version="2.1" date="TBD" description="">
+      <action issue="VFS-380" dev="ggregory" type="fix">
+        FTP connect.error message used instead of SFTP connect.error message.
+      </action>
       <action issue="VFS-379" dev="ggregory" type="update">
         Replace custom BZIP2 code with Apache Commons Compress 1.3.
       </action>