summaryrefslogtreecommitdiff
path: root/scrub/e2scrub_all.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2019-05-20 20:34:59 -0400
committerTheodore Ts'o <tytso@mit.edu>2019-05-20 20:34:59 -0400
commitcf62b892ebe0b4fef82057939979417014427882 (patch)
tree32173d265b752a142fe1bd9220f53acfb7427748 /scrub/e2scrub_all.in
parent6cf9a7f03fe947ed8acc47955c079ef18f248526 (diff)
downloade2fsprogs-cf62b892ebe0b4fef82057939979417014427882.tar.gz
e2scrub_all: fix missing getopts argument which broke e2scrub_all -C
Addresses-Debian-Bug: #929287 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'scrub/e2scrub_all.in')
-rw-r--r--scrub/e2scrub_all.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scrub/e2scrub_all.in b/scrub/e2scrub_all.in
index abc237e4..d99c8197 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;;