diff options
author | Jeremy Allison <jra@samba.org> | 2002-02-05 02:40:16 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-02-05 02:40:16 +0000 |
commit | 7d9c3b7f75c107434a9ed70ea8dc514f8c819e65 (patch) | |
tree | 364ef0fc0e578021f8be75fd1519dc5b85d73e4a | |
parent | 38fa35571ec9c86dfcd22ed603f9249c071771d8 (diff) | |
download | samba-7d9c3b7f75c107434a9ed70ea8dc514f8c819e65.tar.gz samba-7d9c3b7f75c107434a9ed70ea8dc514f8c819e65.tar.bz2 samba-7d9c3b7f75c107434a9ed70ea8dc514f8c819e65.zip |
Fix stupid typo !
Jeremy.
(This used to be commit d1e911afd08971c6cf5429bda929663a5dd8f63d)
-rw-r--r-- | source3/lib/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/error.c b/source3/lib/error.c index e84cf3e29d..e17cd79eda 100644 --- a/source3/lib/error.c +++ b/source3/lib/error.c @@ -30,7 +30,7 @@ struct unix_error_map unix_dos_nt_errmap[] = { { EIO, ERRHRD, ERRgeneral, NT_STATUS_IO_DEVICE_ERROR }, { EBADF, ERRSRV, ERRsrverror, NT_STATUS_INVALID_HANDLE }, { EINVAL, ERRSRV, ERRsrverror, NT_STATUS_INVALID_HANDLE }, - { EEXIST, ERRDOS, ERRfilexists, NT_STATUS_ACCESS_DENIED}, + { EEXIST, ERRDOS, ERRfilexists, NT_STATUS_OBJECT_NAME_COLLISION}, { ENFILE, ERRDOS, ERRnofids, NT_STATUS_TOO_MANY_OPENED_FILES }, { EMFILE, ERRDOS, ERRnofids, NT_STATUS_TOO_MANY_OPENED_FILES }, { ENOSPC, ERRHRD, ERRdiskfull, NT_STATUS_DISK_FULL }, |