diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-07 03:43:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:30 -0500 |
commit | 9278473ea456bd7f45f1465e7112540f611c177c (patch) | |
tree | 60c6405d16e4395b9b026a709e6996eee00eb8e9 /source4 | |
parent | e3450b0ade6b8153a9346326afb24bc3594a1009 (diff) | |
download | samba-9278473ea456bd7f45f1465e7112540f611c177c.tar.gz samba-9278473ea456bd7f45f1465e7112540f611c177c.tar.bz2 samba-9278473ea456bd7f45f1465e7112540f611c177c.zip |
r4589: forgot to commit the new NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED error code
(This used to be commit f4337c988c15dc84e3cfd77b628e92a0996717ea)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/include/nterr.h | 1 | ||||
-rw-r--r-- | source4/libcli/util/nterr.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source4/include/nterr.h b/source4/include/nterr.h index 14c76144a6..9cf9e0f086 100644 --- a/source4/include/nterr.h +++ b/source4/include/nterr.h @@ -562,6 +562,7 @@ #define NT_STATUS_FILE_IS_OFFLINE NT_STATUS(0xC0000000 | 0x0267) #define NT_STATUS_NOT_A_REPARSE_POINT NT_STATUS(0xC0000000 | 0x0275) #define NT_STATUS_NO_SUCH_JOB NT_STATUS(0xC0000000 | 0xEDE) /* scheduler */ +#define NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED NT_STATUS(0xC0000000 | 0x20004) /* I use NT_STATUS_FOOBAR when I have no idea what error code to use - diff --git a/source4/libcli/util/nterr.c b/source4/libcli/util/nterr.c index eac7989800..d2d87eeb1c 100644 --- a/source4/libcli/util/nterr.c +++ b/source4/libcli/util/nterr.c @@ -536,6 +536,7 @@ static const nt_err_code_struct nt_errs[] = { "NT_STATUS_QUOTA_LIST_INCONSISTENT", NT_STATUS_QUOTA_LIST_INCONSISTENT }, { "NT_STATUS_FILE_IS_OFFLINE", NT_STATUS_FILE_IS_OFFLINE }, { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES }, + { "NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED", NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED }, { "STATUS_MORE_ENTRIES", STATUS_MORE_ENTRIES }, { "STATUS_SOME_UNMAPPED", STATUS_SOME_UNMAPPED }, { NULL, NT_STATUS(0) } |