From 2b165a12ed488579f4e845f4fc8183edfbe4e396 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 10 Jul 2013 12:18:36 -0700 Subject: [PATCH] Add error map of STATUS_INVALID_EA_NAME -> ERRDOS, ERRbadfile (from Windows2012 tests). Bug 9992 - Windows error 0x800700FE when copying files with xattr names containing ":" Signed-off-by: Jeremy Allison --- libcli/util/errormap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libcli/util/errormap.c b/libcli/util/errormap.c index 714e62c0d79..38706195a0c 100644 --- a/libcli/util/errormap.c +++ b/libcli/util/errormap.c @@ -54,6 +54,7 @@ static const struct { */ {ERRDOS, ERRmoredata, STATUS_BUFFER_OVERFLOW}, {ERRDOS, ERRnofiles, STATUS_NO_MORE_FILES}, + {ERRDOS, ERRbadfile, STATUS_INVALID_EA_NAME}, {ERRDOS, ERRnofiles, NT_STATUS_NO_MORE_ENTRIES}, {ERRDOS, ERRgeneral, NT_STATUS_UNSUCCESSFUL}, {ERRDOS, ERRbadfunc, NT_STATUS_NOT_IMPLEMENTED}, -- 2.11.4.GIT