1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Add an error mapping for ENOATTR

(This used to be commit 9f0d778490)
This commit is contained in:
Volker Lendecke 2008-01-19 22:44:55 +01:00
parent 1b976d5192
commit 14e7c292bc

View File

@ -92,6 +92,9 @@ const struct unix_error_map unix_dos_nt_errmap[] = {
#ifdef EWOULDBLOCK
{ EWOULDBLOCK, ERRDOS, 111, NT_STATUS_NETWORK_BUSY },
#endif
#ifdef ENOATTR
{ ENOATTR, ERRDOS, ERRbadfile, NT_STATUS_NOT_FOUND },
#endif
{ 0, 0, 0, NT_STATUS_OK }
};