summaryrefslogtreecommitdiff
path: root/source3/libsmb/errormap.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-10-21 23:14:41 +0000
committerJeremy Allison <jra@samba.org>2003-10-21 23:14:41 +0000
commit5114dee2716f9703f2eee07a891d77a15f4b6a82 (patch)
tree8c5a9df2bbff19a62f52960d8fce3a56c9166228 /source3/libsmb/errormap.c
parentf589164ed94d79161d0798296c325b81c5eadbc7 (diff)
downloadsamba-5114dee2716f9703f2eee07a891d77a15f4b6a82.tar.gz
samba-5114dee2716f9703f2eee07a891d77a15f4b6a82.tar.bz2
samba-5114dee2716f9703f2eee07a891d77a15f4b6a82.zip
Fix for bug #64, Win9x Nexus tools not working against Samba3.0. Missing
map in errormap for ERROR_MORE_DATA -> ERRDOS, ERRmoredata. Jeremy. (This used to be commit 7eaae388b35cb3d20cdd968b00d65c88fcee5878)
Diffstat (limited to 'source3/libsmb/errormap.c')
-rw-r--r--source3/libsmb/errormap.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/libsmb/errormap.c b/source3/libsmb/errormap.c
index 4d9a717e1c..116d2cefe1 100644
--- a/source3/libsmb/errormap.c
+++ b/source3/libsmb/errormap.c
@@ -98,6 +98,10 @@ static const struct {
*/
{ERRDOS, ERRnoaccess, NT_STATUS_ACCESS_DENIED},
{ERRDOS, 111, NT_STATUS_BUFFER_TOO_SMALL},
+/*
+ * Not an official error, as only bit 0x80000000, not bits 0xC0000000 are set.
+ */
+ {ERRDOS, ERRmoredata, STATUS_BUFFER_OVERFLOW},
{ERRDOS, ERRbadfid, NT_STATUS_OBJECT_TYPE_MISMATCH},
{ERRHRD, ERRgeneral, NT_STATUS_NONCONTINUABLE_EXCEPTION},
{ERRHRD, ERRgeneral, NT_STATUS_INVALID_DISPOSITION},