|
@@ -855,7 +855,7 @@ enum {
|
|
|
Opt_obsolate, Opt_flush, Opt_tz_utc, Opt_err,
|
|
|
};
|
|
|
|
|
|
-static match_table_t fat_tokens = {
|
|
|
+static const match_table_t fat_tokens = {
|
|
|
{Opt_check_r, "check=relaxed"},
|
|
|
{Opt_check_s, "check=strict"},
|
|
|
{Opt_check_n, "check=normal"},
|
|
@@ -890,14 +890,14 @@ static match_table_t fat_tokens = {
|
|
|
{Opt_tz_utc, "tz=UTC"},
|
|
|
{Opt_err, NULL},
|
|
|
};
|
|
|
-static match_table_t msdos_tokens = {
|
|
|
+static const match_table_t msdos_tokens = {
|
|
|
{Opt_nodots, "nodots"},
|
|
|
{Opt_nodots, "dotsOK=no"},
|
|
|
{Opt_dots, "dots"},
|
|
|
{Opt_dots, "dotsOK=yes"},
|
|
|
{Opt_err, NULL}
|
|
|
};
|
|
|
-static match_table_t vfat_tokens = {
|
|
|
+static const match_table_t vfat_tokens = {
|
|
|
{Opt_charset, "iocharset=%s"},
|
|
|
{Opt_shortname_lower, "shortname=lower"},
|
|
|
{Opt_shortname_win95, "shortname=win95"},
|