diff options
author | Jeremy Allison <jra@samba.org> | 2013-07-10 12:18:36 -0700 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-07-19 17:52:41 +1000 |
commit | fe542fc170053a370092fcf442075dc44189f23e (patch) | |
tree | 0c4e4e0741eabdef6f6af092fc84e8ae161ef56c /libcli | |
parent | 50a288cb6a9bfff1d16cf488bbc0eedcb6ad4602 (diff) | |
download | samba-fe542fc170053a370092fcf442075dc44189f23e.tar.gz samba-fe542fc170053a370092fcf442075dc44189f23e.tar.bz2 samba-fe542fc170053a370092fcf442075dc44189f23e.zip |
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 <jra@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/util/errormap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcli/util/errormap.c b/libcli/util/errormap.c index 714e62c0d7..38706195a0 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}, |