]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - debian/patches/0003-e2scrub_all-fix-missing-getopts-argument-which-broke.patch
Merge tag 'v1.45.2' into debian/master
[thirdparty/e2fsprogs.git] / debian / patches / 0003-e2scrub_all-fix-missing-getopts-argument-which-broke.patch
1 From cf62b892ebe0b4fef82057939979417014427882 Mon Sep 17 00:00:00 2001
2 From: Theodore Ts'o <tytso@mit.edu>
3 Date: Mon, 20 May 2019 20:34:59 -0400
4 Subject: [PATCH] e2scrub_all: fix missing getopts argument which broke
5 e2scrub_all -C
6
7 Addresses-Debian-Bug: #929287
8
9 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
10 ---
11 scrub/e2scrub_all.in | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/scrub/e2scrub_all.in b/scrub/e2scrub_all.in
15 index abc237e42..d99c81978 100644
16 --- a/scrub/e2scrub_all.in
17 +++ b/scrub/e2scrub_all.in
18 @@ -69,7 +69,7 @@ exitcode() {
19 exit "${ret}"
20 }
21
22 -while getopts "nrAV" opt; do
23 +while getopts "nrACV" opt; do
24 case "${opt}" in
25 "n") DBG="echo Would execute: " ;;
26 "r") scrub_args="${scrub_args} -r"; reap=1;;
27 --
28 2.19.1
29