summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-07-15 20:36:02 +0000
committerB. Stack <bgstack15@gmail.com>2021-07-15 20:36:02 +0000
commite5e38bd8d1ca8da89c78a544dd6a9496a7ddb806 (patch)
tree2835a9f26e808c9d726d71d7b7c67c11386044ac
parentMerge branch '11.12' into 'master' (diff)
parentfix after topic 8619 (diff)
downloadFreeFileSync-e5e38bd8d1ca8da89c78a544dd6a9496a7ddb806.tar.gz
FreeFileSync-e5e38bd8d1ca8da89c78a544dd6a9496a7ddb806.tar.bz2
FreeFileSync-e5e38bd8d1ca8da89c78a544dd6a9496a7ddb806.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.cpp2
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)};
}
bgstack15