From 442d1920cb866fb6e0a816d7e175b5cdb8c0e1a8 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 7 Jun 2009 21:44:50 +0200 Subject: [PATCH] Fix removal of orphaned snapshots. These were detected but not removed due to the goto jumping to the wrong label. --- dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dss.c b/dss.c index bb71bc4..b9afbc4 100644 --- a/dss.c +++ b/dss.c @@ -447,7 +447,7 @@ static int try_to_free_disk_space(int low_disk_space) why = "orphaned"; victim = find_orphaned_snapshot(&sl); if (victim) - goto out; + goto remove; DSS_WARNING_LOG("disk space low and nothing obvious to remove\n"); victim = find_oldest_removable_snapshot(&sl); if (victim) -- 2.39.2