diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2009-03-06 03:16:49 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2009-04-02 06:29:54 -0400 |
commit | 4136801aec27b56ae4d06b638b4e9956346b08c8 (patch) | |
tree | 3b343ad6a5833b1bdd8853e7b786ec6eab4848e0 /fs | |
parent | 59285c28d18b77437e6dc7c2abb9aaee10ec3a75 (diff) |
udf: fix novrs mount option
The novrs mount option was broken due to a missing break.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/udf/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c index 4457da0e0bc9..36a467ca1622 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c | |||
@@ -439,6 +439,7 @@ static int udf_parse_options(char *options, struct udf_options *uopt, | |||
439 | switch (token) { | 439 | switch (token) { |
440 | case Opt_novrs: | 440 | case Opt_novrs: |
441 | uopt->novrs = 1; | 441 | uopt->novrs = 1; |
442 | break; | ||
442 | case Opt_bs: | 443 | case Opt_bs: |
443 | if (match_int(&args[0], &option)) | 444 | if (match_int(&args[0], &option)) |
444 | return 0; | 445 | return 0; |