Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b394c1
)
Add missing break statement so e2fsck -k actually works.
author
Theodore Ts'o
<tytso@mit.edu>
Fri, 27 Feb 2004 15:39:27 +0000
(10:39 -0500)
committer
Theodore Ts'o
<tytso@mit.edu>
Fri, 27 Feb 2004 15:39:27 +0000
(10:39 -0500)
(Addresses Debian Bug #234993)
e2fsck/unix.c
patch
|
blob
|
history
diff --git
a/e2fsck/unix.c
b/e2fsck/unix.c
index
55dcfc1
..
89c2fa6
100644
(file)
--- a/
e2fsck/unix.c
+++ b/
e2fsck/unix.c
@@
-678,6
+678,7
@@
static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx)
#endif
case 'k':
keep_bad_blocks++;
+ break;
default:
usage(ctx);
}