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

Added a unix error code for NT_STATUS_PATH_NOT_COVERED.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent d2eafa7483
commit 66e62245ea

View File

@ -175,6 +175,7 @@ int cli_error(struct cli_state *cli, uint8 *eclass, uint32 *num, uint32 *nt_rpc_
case NT_STATUS_SHARING_VIOLATION: return EBUSY;
case NT_STATUS_OBJECT_PATH_INVALID: return ENOTDIR;
case NT_STATUS_OBJECT_NAME_COLLISION: return EEXIST;
case NT_STATUS_PATH_NOT_COVERED: return ENOENT;
}
/* for all other cases - a default code */