summaryrefslogtreecommitdiff
path: root/source3/libsmb/errormap.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-10-08 23:21:36 +0000
committerJeremy Allison <jra@samba.org>2003-10-08 23:21:36 +0000
commit52f63783bcc42cc4a1351ad9176d24a73a26c5eb (patch)
tree5ab6205f79e87da287e7e02f0c57d58ee1bc67b1 /source3/libsmb/errormap.c
parent11b044e4246380358083963f9929c4ded2eb5034 (diff)
downloadsamba-52f63783bcc42cc4a1351ad9176d24a73a26c5eb.tar.gz
samba-52f63783bcc42cc4a1351ad9176d24a73a26c5eb.tar.bz2
samba-52f63783bcc42cc4a1351ad9176d24a73a26c5eb.zip
Fixup error code returns from Samba4 tester. Ensure invalid paths are
validated the same way. Jeremy. (This used to be commit 6ad2f0ba27566ab3928ccbbbb3c3a64b09ca139c)
Diffstat (limited to 'source3/libsmb/errormap.c')
-rw-r--r--source3/libsmb/errormap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/errormap.c b/source3/libsmb/errormap.c
index 3d99e3d5e5..4d9a717e1c 100644
--- a/source3/libsmb/errormap.c
+++ b/source3/libsmb/errormap.c
@@ -1490,7 +1490,7 @@ const struct unix_error_map unix_dos_nt_errmap[] = {
{ EPERM, ERRDOS, ERRnoaccess, NT_STATUS_ACCESS_DENIED },
{ EACCES, ERRDOS, ERRnoaccess, NT_STATUS_ACCESS_DENIED },
{ ENOENT, ERRDOS, ERRbadfile, NT_STATUS_OBJECT_NAME_NOT_FOUND },
- { ENOTDIR, ERRDOS, ERRbadpath, NT_STATUS_OBJECT_PATH_NOT_FOUND },
+ { ENOTDIR, ERRDOS, ERRbadpath, NT_STATUS_NOT_A_DIRECTORY },
{ EIO, ERRHRD, ERRgeneral, NT_STATUS_IO_DEVICE_ERROR },
{ EBADF, ERRSRV, ERRsrverror, NT_STATUS_INVALID_HANDLE },
{ EINVAL, ERRSRV, ERRsrverror, NT_STATUS_INVALID_HANDLE },