|
@@ -950,7 +950,7 @@ static int parse_options(char *options, int is_vfat, int silent, int *debug,
|
|
*debug = 0;
|
|
*debug = 0;
|
|
|
|
|
|
if (!options)
|
|
if (!options)
|
|
- return 0;
|
|
|
|
|
|
+ goto out;
|
|
|
|
|
|
while ((p = strsep(&options, ",")) != NULL) {
|
|
while ((p = strsep(&options, ",")) != NULL) {
|
|
int token;
|
|
int token;
|
|
@@ -1104,10 +1104,13 @@ static int parse_options(char *options, int is_vfat, int silent, int *debug,
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+out:
|
|
/* UTF-8 doesn't provide FAT semantics */
|
|
/* UTF-8 doesn't provide FAT semantics */
|
|
if (!strcmp(opts->iocharset, "utf8")) {
|
|
if (!strcmp(opts->iocharset, "utf8")) {
|
|
printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
|
|
printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
|
|
- " for FAT filesystems, filesystem will be case sensitive!\n");
|
|
|
|
|
|
+ " for FAT filesystems, filesystem will be "
|
|
|
|
+ "case sensitive!\n");
|
|
}
|
|
}
|
|
|
|
|
|
/* If user doesn't specify allow_utime, it's initialized from dmask. */
|
|
/* If user doesn't specify allow_utime, it's initialized from dmask. */
|