Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2014-04-02 13:02:06 +0400
committerKenneth Skovhede <kenneth@hexad.dk>2014-04-02 13:02:06 +0400
commitb1ce24d504d19a88159aa82d84e8da2746ee96b0 (patch)
tree342d4d604d5a6bc98390f919d523030758e9128d /Duplicati/Library/Snapshots/NoSnapshotWindows.cs
parent84ed9d57cce638ba06a6b569f6212fdce163e6a8 (diff)
Added hardlink detection on Linux/OSX
Diffstat (limited to 'Duplicati/Library/Snapshots/NoSnapshotWindows.cs')
-rw-r--r--Duplicati/Library/Snapshots/NoSnapshotWindows.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
index 5bf9a98da..988e89a1b 100644
--- a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
+++ b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
@@ -154,6 +154,16 @@ namespace Duplicati.Library.Snapshots
{
return false;
}
+
+ /// <summary>
+ /// Gets a unique hardlink target ID
+ /// </summary>
+ /// <returns>The hardlink ID</returns>
+ /// <param name="file">The file or folder to examine</param>
+ public override string HardlinkTargetID(string path)
+ {
+ return null;
+ }
}
}