diff options
author | Jeremy Allison <jra@samba.org> | 2002-08-20 20:54:32 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-08-20 20:54:32 +0000 |
commit | e53a81261ed189881c0f07e1b46f97aa6770cab7 (patch) | |
tree | 92c30805952fca4a30431f0c6b4c873621a5b6ee /source/lib/error.c | |
parent | b0bd42c9466f41dc87a11fd6065620f93c8ebc40 (diff) | |
download | samba-e53a81261ed189881c0f07e1b46f97aa6770cab7.tar.gz samba-e53a81261ed189881c0f07e1b46f97aa6770cab7.tar.xz samba-e53a81261ed189881c0f07e1b46f97aa6770cab7.zip |
IFSTEST fixes for open fid, nametoolong.
Jeremy.
Diffstat (limited to 'source/lib/error.c')
-rw-r--r-- | source/lib/error.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/lib/error.c b/source/lib/error.c index 608d2b89bad..af8cf960e8f 100644 --- a/source/lib/error.c +++ b/source/lib/error.c @@ -46,6 +46,9 @@ const struct unix_error_map unix_dos_nt_errmap[] = { #ifdef EROFS { EROFS, ERRHRD, ERRnowrite, NT_STATUS_ACCESS_DENIED }, #endif +#ifdef ENAMETOOLONG + { ENAMETOOLONG, ERRDOS, 206, NT_STATUS_OBJECT_NAME_INVALID }, +#endif { 0, 0, 0, NT_STATUS_OK } }; |