From: Theodore Ts'o Date: Tue, 21 May 2019 00:34:59 +0000 (-0400) Subject: e2scrub_all: fix missing getopts argument which broke e2scrub_all -C X-Git-Tag: v1.45.2~10 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=cf62b892ebe0b4fef82057939979417014427882;p=tools%2Fe2fsprogs.git e2scrub_all: fix missing getopts argument which broke e2scrub_all -C Addresses-Debian-Bug: #929287 Signed-off-by: Theodore Ts'o --- 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;;