mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
newfs_msdosfs: Respect FSFIXFAT
Fix some whitespace issues while here. Obtained from: NetBSD (rev. 1.9) MFC after: 3 days
This commit is contained in:
parent
c959c23740
commit
f07b643c5c
2 changed files with 4 additions and 4 deletions
|
|
@ -142,7 +142,7 @@ checkfilesys(const char *fname)
|
|||
goto out;
|
||||
|
||||
/* now write the FATs */
|
||||
if (mod & FSFATMOD) {
|
||||
if (mod & (FSFATMOD|FSFIXFAT)) {
|
||||
if (ask(1, "Update FATs")) {
|
||||
mod |= writefat(dosfs, &boot, fat, mod & FSFIXFAT);
|
||||
if (mod & FSFATAL)
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
*/
|
||||
|
||||
#ifndef EXT_H
|
||||
#define EXT_H
|
||||
#define EXT_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
|
|
@ -69,8 +69,8 @@ int checkfilesys(const char *);
|
|||
#define FSFATMOD 4 /* The FAT was modified */
|
||||
#define FSERROR 8 /* Some unrecovered error remains */
|
||||
#define FSFATAL 16 /* Some unrecoverable error occurred */
|
||||
#define FSDIRTY 32 /* File system is dirty */
|
||||
#define FSFIXFAT 64 /* Fix file system FAT */
|
||||
#define FSDIRTY 32 /* File system is dirty */
|
||||
#define FSFIXFAT 64 /* Fix file system FAT */
|
||||
|
||||
/*
|
||||
* read a boot block in a machine independent fashion and translate
|
||||
|
|
|
|||
Loading…
Reference in a new issue