### Eclipse Workspace Patch 1.0 #P org.eclipse.rse.services.ssh Index: src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java =================================================================== RCS file: /cvsroot/tools/org.eclipse.tm.rse/plugins/org.eclipse.rse.services.ssh/src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java,v retrieving revision 1.74 diff -u -r1.74 SftpFileService.java --- src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java 1 Feb 2011 08:05:52 -0000 1.74 +++ src/org/eclipse/rse/internal/services/ssh/files/SftpFileService.java 30 Sep 2011 23:26:07 -0000 @@ -631,7 +631,7 @@ String fullPath = concat(remoteParent, fileName); if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) { try { - attrs = getChannel("SftpFileService.getFile: " + fullPath).lstat(recodeSafeForJsch(fullPath)); //$NON-NLS-1$ + attrs = getChannel("SftpFileService.getFile: " + fullPath).stat(recodeSafeForJsch(fullPath)); //$NON-NLS-1$ Activator.trace("SftpFileService.getFile <--"); //$NON-NLS-1$ node = makeHostFile(remoteParent, fileName, attrs); } catch(Exception e) {