From 1f7110503a25572a5070eb4913d9a485a6f44052 Mon Sep 17 00:00:00 2001 From: Kenneth Skovhede Date: Thu, 3 Nov 2016 13:11:53 +0100 Subject: Updated unix symlinks handling to store correct metadata for symlinks --- Duplicati/Library/Snapshots/NoSnapshotWindows.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Duplicati/Library/Snapshots/NoSnapshotWindows.cs') diff --git a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs index 00cb23c86..e708042ac 100644 --- a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs +++ b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs @@ -146,9 +146,11 @@ namespace Duplicati.Library.Snapshots /// /// The metadata for the given file or folder /// The file or folder to examine - public override Dictionary GetMetadata(string file) + /// A flag indicating if the target is a symlink + /// A flag indicating if a symlink should be followed + public override Dictionary GetMetadata(string file, bool isSymlink, bool followSymlink) { - return m_sysIO.GetMetadata(file); + return m_sysIO.GetMetadata(file, isSymlink, followSymlink); } /// -- cgit v1.2.3