diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-04-06 10:57:17 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-04-06 11:28:16 +0200 |
commit | d9e2daaf3d8649650cf9784b4fe9d9de4507da0c (patch) | |
tree | a6f5960da742e676f249036e59656dac040ecaed /src/import/pull-dkr.c | |
parent | 41d1ed059bbc863c73161f39594de2eb7b338886 (diff) |
btrfs: support recursively removing btrfs snapshots
Diffstat (limited to 'src/import/pull-dkr.c')
-rw-r--r-- | src/import/pull-dkr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/import/pull-dkr.c b/src/import/pull-dkr.c index a1e6fe8ff7..402ddac32b 100644 --- a/src/import/pull-dkr.c +++ b/src/import/pull-dkr.c @@ -111,8 +111,7 @@ DkrPull* dkr_pull_unref(DkrPull *i) { sd_event_unref(i->event); if (i->temp_path) { - (void) btrfs_subvol_remove(i->temp_path); - (void) rm_rf(i->temp_path, REMOVE_ROOT|REMOVE_PHYSICAL); + (void) rm_rf(i->temp_path, REMOVE_ROOT|REMOVE_PHYSICAL|REMOVE_SUBVOLUME); free(i->temp_path); } |