]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
e2scrub_all: fix missing getopts argument which broke e2scrub_all -C
authorTheodore Ts'o <tytso@mit.edu>
Tue, 21 May 2019 00:34:59 +0000 (20:34 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 21 May 2019 00:34:59 +0000 (20:34 -0400)
Addresses-Debian-Bug: #929287

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
scrub/e2scrub_all.in

index abc237e426f3e356940a182672f9487475d359b1..d99c81978d95cffecb609e15610844f9924b7b40 100644 (file)
@@ -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;;