mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
makefs: Use ENODATA instead of ENOMSG as a translation for missing ENOATTR.
This is consistent with what some linux filesystems do and has been adopted in our linuxulator. MFC after: 3 days
This commit is contained in:
parent
fb205d37d7
commit
e2ec2f75f2
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include "makefs.h"
|
||||
|
||||
#ifndef ENOATTR
|
||||
#define ENOATTR ENOMSG
|
||||
#define ENOATTR ENODATA
|
||||
#endif
|
||||
|
||||
#define IS_DOT(nm) ((nm)[0] == '.' && (nm)[1] == '\0')
|
||||
|
|
|
|||
Loading…
Reference in a new issue