summaryrefslogtreecommitdiffstats
path: root/fs/udf
diff options
context:
space:
mode:
authorClemens Ladisch2009-03-06 09:16:49 +0100
committerJan Kara2009-04-02 12:29:54 +0200
commit4136801aec27b56ae4d06b638b4e9956346b08c8 (patch)
tree3b343ad6a5833b1bdd8853e7b786ec6eab4848e0 /fs/udf
parentudf: Fix oops when invalid character in filename occurs (diff)
downloadkernel-qcow2-linux-4136801aec27b56ae4d06b638b4e9956346b08c8.tar.gz
kernel-qcow2-linux-4136801aec27b56ae4d06b638b4e9956346b08c8.tar.xz
kernel-qcow2-linux-4136801aec27b56ae4d06b638b4e9956346b08c8.zip
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/udf')
-rw-r--r--fs/udf/super.c1
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,
switch (token) {
case Opt_novrs:
uopt->novrs = 1;
+ break;
case Opt_bs:
if (match_int(&args[0], &option))
return 0;