diff options
author | B. Stack <bgstack15@gmail.com> | 2021-07-15 16:32:34 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2021-07-15 16:32:34 -0400 |
commit | fe6b18b771e98feb38b0401c182ccf2dd58f4a2a (patch) | |
tree | 2835a9f26e808c9d726d71d7b7c67c11386044ac | |
parent | Merge branch '11.12' into 'master' (diff) | |
download | FreeFileSync-fe6b18b771e98feb38b0401c182ccf2dd58f4a2a.tar.gz FreeFileSync-fe6b18b771e98feb38b0401c182ccf2dd58f4a2a.tar.bz2 FreeFileSync-fe6b18b771e98feb38b0401c182ccf2dd58f4a2a.zip |
fix after topic 8619
-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)}; } |