- Files with the Windows-specific SYSTEM (FILE_ATTRIBUTE_SYSTEM) attribute
        will be marked as system immutable files.
 
-   * - hidedotfiles
+   * - hide_dot_files
      - Updates the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute
        when creating and moving or renaming files. Files whose names start
        with a dot will have the HIDDEN attribute set and files whose names
 
            !valid_windows_name(sbi, (struct le_str *)&de_name->name_len))
                return -EINVAL;
 
-       /* If option "hidedotfiles" then set hidden attribute for dot files. */
+       /* If option "hide_dot_files" then set hidden attribute for dot files. */
        if (ni->mi.sbi->options->hide_dot_files) {
                if (de_name->name_len > 0 &&
                    le16_to_cpu(de_name->name[0]) == '.')
 
                fa = FILE_ATTRIBUTE_ARCHIVE;
        }
 
-       /* If option "hidedotfiles" then set hidden attribute for dot files. */
+       /* If option "hide_dot_files" then set hidden attribute for dot files. */
        if (sbi->options->hide_dot_files && name->name[0] == '.')
                fa |= FILE_ATTRIBUTE_HIDDEN;
 
 
        fsparam_flag_no("force",                Opt_force),
        fsparam_flag_no("sparse",               Opt_sparse),
        fsparam_flag_no("hidden",               Opt_nohidden),
-       fsparam_flag_no("hidedotfiles",         Opt_hide_dot_files),
+       fsparam_flag_no("hide_dot_files",       Opt_hide_dot_files),
        fsparam_flag_no("windows_names",        Opt_windows_names),
        fsparam_flag_no("acl",                  Opt_acl),
        fsparam_flag_no("showmeta",             Opt_showmeta),
        if (opts->windows_names)
                seq_puts(m, ",windows_names");
        if (opts->hide_dot_files)
-               seq_puts(m, ",hidedotfiles");
+               seq_puts(m, ",hide_dot_files");
        if (opts->force)
                seq_puts(m, ",force");
        if (opts->noacsrules)