e2fsck: read only parameter incorrectly compared

Don't check for lost+found in read only mode.

[Note: this patch was originally made against 1.41.14 version of
e2fsprogs found as part of the AOSP (Android Open Source Program)
tree.  My Signed-off-by relies on the fact that the original patch
author would have had to have filed a contribution agreement with Open
Handset Alliance before this commit before this commit was allowed
into the AOSP tree. -- tytso]

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
debian-1.42.9
Johan Erlandsson 2013-12-19 13:55:51 -05:00 committed by Theodore Ts'o
parent f404167dda
commit e9a8c0c2d4
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ void e2fsck_pass3(e2fsck_t ctx)
/*
* Force the creation of /lost+found if not present
*/
if ((ctx->flags & E2F_OPT_READONLY) == 0)
if ((ctx->options & E2F_OPT_READONLY) == 0)
e2fsck_get_lost_and_found(ctx, 1);
/*