mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
errormap: Add unix_to_werror() function
While this function technically is closest to the map_nt_status_from_unix() function, I think it is better to keep the new function in line with our usual fooerror_to_barerror() naming scheme. Signed-off-by: Kai Blin <kai@samba.org>
This commit is contained in:
parent
e8ed54d6c9
commit
df88e66250
@ -45,4 +45,9 @@ NTSTATUS map_nt_error_from_unix_common(int unix_error);
|
||||
|
||||
NTSTATUS nt_status_squash(NTSTATUS nt_status);
|
||||
|
||||
/*****************************************************************************
|
||||
convert a Unix error to a WERROR
|
||||
*****************************************************************************/
|
||||
WERROR unix_to_werror(int unix_error);
|
||||
|
||||
#endif /* _SAMBA_ERROR_H */
|
||||
|
@ -1238,3 +1238,8 @@ WERROR ntstatus_to_werror(NTSTATUS error)
|
||||
return W_ERROR(NT_STATUS_V(error) & 0xffff);
|
||||
}
|
||||
|
||||
/* Convert a Unix error code to a WERROR. */
|
||||
WERROR unix_to_werror(int unix_error)
|
||||
{
|
||||
return ntstatus_to_werror(map_nt_error_from_unix_common(unix_error));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user