]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- fixed execution of grub scripts by removing unused constructor 41/head
authorArvin Schnell <aschnell@suse.de>
Wed, 5 Feb 2014 10:02:38 +0000 (11:02 +0100)
committerArvin Schnell <aschnell@suse.de>
Wed, 5 Feb 2014 10:02:38 +0000 (11:02 +0100)
VERSION
package/snapper.changes
snapper/SystemCmd.cc
snapper/SystemCmd.h

diff --git a/VERSION b/VERSION
index 0ea3a944b399d25f7e1b8fe684d754eb8da9fe7f..0c62199f16ac1e2d7f7ae75b420c1231325dff4e 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2.0
+0.2.1
index f265d8b46f0ce49393472c7aac6b0849ba6261b4..615b8257ce5b38628bfea1d1fd789472ece6ce28 100644 (file)
@@ -1,3 +1,9 @@
+-------------------------------------------------------------------
+Wed Feb 05 10:50:25 CET 2014 - aschnell@suse.de
+
+- fixed execution of grub scripts
+- 0.2.1
+
 -------------------------------------------------------------------
 Wed Jan 29 11:09:45 CET 2014 - aschnell@suse.de
 
index ff9d51188e3865be4c854c98b2d921b31ecb5bd6..4a5011149a8fad511a569d112c8b7ebaa5664f68 100644 (file)
@@ -49,14 +49,6 @@ namespace snapper
 }
 
 
-    SystemCmd::SystemCmd(bool log_output)
-       : Combine_b(false), log_output(log_output)
-{
-    y2mil("constructor SystemCmd");
-    init();
-}
-
-
 void SystemCmd::init()
     {
     File_aC[0] = File_aC[1] = NULL;
index 93e6854e5c8dafc93273177c2d956748c903b160..29a48264fd41d395cd391ebdcdb36a81c3cc294d 100644 (file)
@@ -45,7 +45,6 @@ namespace snapper
        enum OutputStream { IDX_STDOUT, IDX_STDERR };
 
        SystemCmd(const string& Command_Cv, bool log_output = true);
-       SystemCmd(bool log_output = true);
 
        virtual ~SystemCmd();