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>2013-06-29 14:17:52 +0400
committerKenneth Skovhede <kenneth@hexad.dk>2013-06-29 14:17:52 +0400
commita9ca99996256e041ccd365fb617fef8d1f1ef4bf (patch)
tree67df3dd8ba8cdc540480ce448e53fe728535a414 /Duplicati/Library/Snapshots/NoSnapshotWindows.cs
parent2bf912a0af64942bc43106f3b9a7c8763150de2f (diff)
Updated to allow files as input arguments to backup
Diffstat (limited to 'Duplicati/Library/Snapshots/NoSnapshotWindows.cs')
-rw-r--r--Duplicati/Library/Snapshots/NoSnapshotWindows.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
index e6d935358..9635bfce1 100644
--- a/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
+++ b/Duplicati/Library/Snapshots/NoSnapshotWindows.cs
@@ -29,13 +29,13 @@ namespace Duplicati.Library.Snapshots
{
private SystemIOWindows m_sysIO = new SystemIOWindows();
- public NoSnapshotWindows(string[] sourcefolders)
- : base(sourcefolders)
+ public NoSnapshotWindows(string[] sources)
+ : base(sources)
{
}
- public NoSnapshotWindows(string[] sourcefolders, Dictionary<string, string> options)
- : base(sourcefolders, options)
+ public NoSnapshotWindows(string[] sources, Dictionary<string, string> options)
+ : base(sources, options)
{
}