diff options
author | B. Stack <bgstack15@gmail.com> | 2021-07-15 20:36:02 +0000 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2021-07-15 20:36:02 +0000 |
commit | e5e38bd8d1ca8da89c78a544dd6a9496a7ddb806 (patch) | |
tree | 2835a9f26e808c9d726d71d7b7c67c11386044ac | |
parent | Merge branch '11.12' into 'master' (diff) | |
parent | fix after topic 8619 (diff) | |
download | FreeFileSync-11.12.tar.gz FreeFileSync-11.12.tar.bz2 FreeFileSync-11.12.zip |
Merge branch '11.12-fix' into 'master'11.12
fix after topic 8619
See merge request opensource-tracking/FreeFileSync!36
-rw-r--r-- | FreeFileSync/Source/afs/sftp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/afs/sftp.cpp b/FreeFileSync/Source/afs/sftp.cpp index 9588813a..83e234fd 100644 --- a/FreeFileSync/Source/afs/sftp.cpp +++ b/FreeFileSync/Source/afs/sftp.cpp @@ -1088,7 +1088,7 @@ SftpItemDetails getSymlinkTargetDetails(const SftpLogin& login, const AfsPath& l if ((attribsTrg.flags & LIBSSH2_SFTP_ATTR_ACMODTIME) == 0) //server probably does not support these attributes => should fail at folder level! throw FileError(replaceCpy(_("Cannot read file attributes of %x."), L"%x", fmtPath(getSftpDisplayPath(login, linkPath))), L"Modification time not supported."); if ((attribsTrg.flags & LIBSSH2_SFTP_ATTR_SIZE) == 0) - throw FileError(replaceCpy(_("Cannot read file attributes of %x."), L"%x", fmtPath(getSftpDisplayPath(login., linkPath))), L"File size not supported."); + throw FileError(replaceCpy(_("Cannot read file attributes of %x."), L"%x", fmtPath(getSftpDisplayPath(login, linkPath))), L"File size not supported."); return {AFS::ItemType::file, attribsTrg.filesize, static_cast<time_t>(attribsTrg.mtime)}; } |