1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

This brings the NT->DOS error mapping into better line with what NT does.

I'll post the changes to the actual map to the list for comment, but this fixes
the 'unknown' case.

Andrew Bartlett
(This used to be commit 024843a2ce)
This commit is contained in:
Andrew Bartlett 2002-01-01 06:16:43 +00:00
parent 02ad29785b
commit 8d09eecf69

View File

@ -1396,8 +1396,8 @@ void ntstatus_to_dos(NTSTATUS ntstatus, uint8 *eclass, uint32 *ecode)
return;
}
}
*eclass = ERRSRV;
*ecode = ERRerror;
*eclass = ERRHRD;
*ecode = ERRgeneral;
}