1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

s4:errormap: map ECANCELED to NT_STATUS_CANCELLED

metze
This commit is contained in:
Stefan Metzmacher 2009-03-06 07:15:13 +01:00
parent 67d12e9c6b
commit df145c3382

View File

@ -1356,6 +1356,10 @@ const struct unix_error_map unix_nt_errmap[] = {
#ifdef ENOSYS
{ ENOSYS, NT_STATUS_INVALID_SYSTEM_SERVICE },
#endif
#ifdef ECANCELED
{ ECANCELED, NT_STATUS_CANCELLED },
#endif
{ 0, NT_STATUS_UNSUCCESSFUL }
};