|
|
@@ -2094,6 +2094,13 @@ void __fastcall TFTPFileSystem::AutoDetectTimeDifference(TRemoteFileList * FileL
|
|
|
FORMAT(L"Not using file %s to detect timezone difference as it has the timestamp in the future [%s]",
|
|
|
(File->FullFileName, StandardTimestamp(UtcModification))));
|
|
|
}
|
|
|
+ // "SecureLink FTP Proxy" succeeds CWD for a file, so we never get a timestamp here
|
|
|
+ else if (UtcModification == TDateTime())
|
|
|
+ {
|
|
|
+ FTerminal->LogEvent(
|
|
|
+ FORMAT(L"Not using file %s to detect timezone difference as its timestamp was not resolved",
|
|
|
+ (File->FullFileName)));
|
|
|
+ }
|
|
|
else
|
|
|
{
|
|
|
FDetectTimeDifference = false;
|