]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- fixed --root option (bsc#1016633) 309/head
authorArvin Schnell <aschnell@suse.de>
Wed, 21 Dec 2016 09:33:41 +0000 (10:33 +0100)
committerArvin Schnell <aschnell@suse.de>
Wed, 21 Dec 2016 09:33:41 +0000 (10:33 +0100)
VERSION
client/proxy-lib.cc
client/proxy-lib.h
package/snapper.changes

diff --git a/VERSION b/VERSION
index 1d0ba9ea182b0f7354f3daf12120744ec5e0c2f8..267577d47e497a0630bc454b3f74c4fd9a10ced4 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.4.0
+0.4.1
index 9fd7676a403c33ac5226ed2cee762e75b123066f..7941bf12c9354c85c4080bf03f9e10828e3d5a77 100644 (file)
@@ -144,7 +144,7 @@ ProxySnappersLib::getSnapper(const string& config_name)
            return proxy_snapper.get();
     }
 
-    ProxySnapperLib* ret = new ProxySnapperLib(config_name);
+    ProxySnapperLib* ret = new ProxySnapperLib(config_name, target_root);
     proxy_snappers.emplace_back(ret);
     return ret;
 }
index c8f13e72ee4195d899c3a850bec092b37032a300..8c8528257bb7a5703009b7b4d8c44a3151318937 100644 (file)
@@ -86,8 +86,8 @@ class ProxySnapperLib : public ProxySnapper
 
 public:
 
-    ProxySnapperLib(const string& config_name)
-       : snapper(new Snapper(config_name, "/")), proxy_snapshots(this)
+    ProxySnapperLib(const string& config_name, const string& target_root)
+       : snapper(new Snapper(config_name, target_root)), proxy_snapshots(this)
     {}
 
     virtual const string& configName() const override { return snapper->configName(); }
index ca3aa5139ed6f6fbf936d44c93eff4ed35b1e9d4..cdfc3c37519f899f1d66237014a48db12c826986 100644 (file)
@@ -1,3 +1,9 @@
+-------------------------------------------------------------------
+Wed Dec 21 10:29:57 CET 2016 - aschnell@suse.com
+
+- fixed --root option (bsc#1016633)
+- version 0.4.1
+
 -------------------------------------------------------------------
 Thu Dec 15 21:36:23 CET 2016 - aschnell@suse.com