diff options
author | Volker Lendecke <vl@samba.org> | 2014-09-13 20:44:13 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2014-09-18 20:36:11 +0200 |
commit | ed00ac21dc54c5bff3331de874f5ab353d39fbdb (patch) | |
tree | a1a2c63719986d6e1ee01ff583d779ba5cd2c8cb /source3/lib/errmap_unix.c | |
parent | b365d44e15192efd7597f7b7e69bd302dc244c88 (diff) | |
download | samba-ed00ac21dc54c5bff3331de874f5ab353d39fbdb.tar.gz samba-ed00ac21dc54c5bff3331de874f5ab353d39fbdb.tar.xz samba-ed00ac21dc54c5bff3331de874f5ab353d39fbdb.zip |
lib: Add EMSGSIZE to map_nt_error_from_unix
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'source3/lib/errmap_unix.c')
-rw-r--r-- | source3/lib/errmap_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/errmap_unix.c b/source3/lib/errmap_unix.c index c5e190ce8c..56d3f00da8 100644 --- a/source3/lib/errmap_unix.c +++ b/source3/lib/errmap_unix.c @@ -49,6 +49,7 @@ static const struct { { ENOSPC, NT_STATUS_DISK_FULL }, { ENOMEM, NT_STATUS_NO_MEMORY }, { EISDIR, NT_STATUS_FILE_IS_A_DIRECTORY}, + { EMSGSIZE, NT_STATUS_PORT_MESSAGE_TOO_LONG }, #ifdef EPIPE { EPIPE, NT_STATUS_CONNECTION_DISCONNECTED}, #endif |