1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-19 21:57:57 +03:00

Fix write error returning EFBIG - found by Conrad.

Jeremy.
(This used to be commit 2d63fc7760634308cc280e4d745a6f7398f75d20)
This commit is contained in:
Jeremy Allison 2002-12-11 18:52:32 +00:00
parent 58ea9ea449
commit f7267c1235

View File

@ -1512,6 +1512,9 @@ const struct unix_error_map unix_dos_nt_errmap[] = {
#endif #endif
#ifdef ENAMETOOLONG #ifdef ENAMETOOLONG
{ ENAMETOOLONG, ERRDOS, 206, NT_STATUS_OBJECT_NAME_INVALID }, { ENAMETOOLONG, ERRDOS, 206, NT_STATUS_OBJECT_NAME_INVALID },
#endif
#ifdef EFBIG
{ EFBIG, ERRHRD, ERRdiskfull, NT_STATUS_DISK_FULL },
#endif #endif
{ 0, 0, 0, NT_STATUS_OK } { 0, 0, 0, NT_STATUS_OK }
}; };