]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- renamed function 147/head
authorArvin Schnell <aschnell@suse.de>
Wed, 18 Feb 2015 15:34:39 +0000 (16:34 +0100)
committerArvin Schnell <aschnell@suse.de>
Wed, 18 Feb 2015 15:34:39 +0000 (16:34 +0100)
snapper/Btrfs.cc

index 14529bb513522af3c6aa3c2481870e8f5be39784..7f246e8002347dedefa2ba8b1cb825b9e80b1e32 100644 (file)
@@ -1410,13 +1410,13 @@ namespace snapper
 
        void parse_fstab()
        {
-           if (mnt_table_parse_fstab(table, xxx().c_str()) != 0)
+           if (mnt_table_parse_fstab(table, target_fstab().c_str()) != 0)
                throw runtime_error("mnt_table_parse_fstab failed");
        }
 
        void replace_file()
        {
-           if (mnt_table_replace_file(table, xxx().c_str()) != 0)
+           if (mnt_table_replace_file(table, target_fstab().c_str()) != 0)
                throw runtime_error("mnt_table_replace_file failed");
        }
 
@@ -1439,7 +1439,7 @@ namespace snapper
 
     private:
 
-       string xxx() const      // TODO
+       string target_fstab() const
        {
            return prepend_root_prefix(root_prefix, "/etc/fstab");
        }