From 62a3d77784965cbb9e49424ac09501d7bb650d3f Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 5 Apr 2018 15:38:39 +0100 Subject: [PATCH] cr-ensure-disk-space: Actually quit before taking lock if all is well 5d2466dc0f26 "cr-ensure-disk-space: Correct stdout output" was supposed to change an `exit 0' into a `quit_ok' but erroneously changed it into `check_space'. Fix this. Signed-off-by: Ian Jackson --- cr-ensure-disk-space | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cr-ensure-disk-space b/cr-ensure-disk-space index 8d3d443..7091314 100755 --- a/cr-ensure-disk-space +++ b/cr-ensure-disk-space @@ -79,7 +79,7 @@ sub quit_ok () { $|=1; -check_space if check_space; +quit_ok if check_space; print "taking lock..."; -- 2.39.5