From cc0be8aa97c5c54a79411c924fe62c99ad559638 Mon Sep 17 00:00:00 2001 From: Arvin Schnell Date: Wed, 18 Feb 2015 16:34:39 +0100 Subject: [PATCH] - renamed function --- snapper/Btrfs.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snapper/Btrfs.cc b/snapper/Btrfs.cc index 14529bb5..7f246e80 100644 --- a/snapper/Btrfs.cc +++ b/snapper/Btrfs.cc @@ -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"); } -- 2.47.3