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 used to be commit 66e62245ea)
This commit is contained in:
Tim Potter 2001-06-15 07:13:12 +00:00
parent b7e382bfb2
commit f339bbbc30

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 */