From fe6b18b771e98feb38b0401c182ccf2dd58f4a2a Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 15 Jul 2021 16:32:34 -0400 Subject: fix after topic 8619 --- FreeFileSync/Source/afs/sftp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(attribsTrg.mtime)}; } -- cgit