]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Add missing break statement so e2fsck -k actually works.
authorTheodore Ts'o <tytso@mit.edu>
Fri, 27 Feb 2004 15:39:27 +0000 (10:39 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 27 Feb 2004 15:39:27 +0000 (10:39 -0500)
(Addresses Debian Bug #234993)

e2fsck/unix.c

index 55dcfc199daba44eb5125e283aa08f609faf922e..89c2fa6a0b285072ecc05ea6dd5e84f217552447 100644 (file)
@@ -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);
                }