From 1015339b7481cb69d582a8d839ff02688d13b0da Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 20 May 2019 20:34:59 -0400 Subject: [PATCH] e2scrub_all: fix missing getopts argument which broke e2scrub_all -C Addresses-Debian-Bug: #929287 Signed-off-by: Theodore Ts'o --- scrub/e2scrub_all.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrub/e2scrub_all.in b/scrub/e2scrub_all.in index abc237e..d99c819 100644 --- a/scrub/e2scrub_all.in +++ b/scrub/e2scrub_all.in @@ -69,7 +69,7 @@ exitcode() { exit "${ret}" } -while getopts "nrAV" opt; do +while getopts "nrACV" opt; do case "${opt}" in "n") DBG="echo Would execute: " ;; "r") scrub_args="${scrub_args} -r"; reap=1;; -- 1.8.3.1