summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-02-28 09:04:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:15 -0500
commit84d2ceb1df5bfeb179f9eede602496aea353e5ec (patch)
treee22097e50bfcba55af74ab60d61eae05c63dcb7d /source3
parent1aa730ef968dac9c27b1f00668d28e71b5c38b72 (diff)
downloadsamba-84d2ceb1df5bfeb179f9eede602496aea353e5ec.tar.gz
samba-84d2ceb1df5bfeb179f9eede602496aea353e5ec.tar.bz2
samba-84d2ceb1df5bfeb179f9eede602496aea353e5ec.zip
r21581: Add an error code I just got
(This used to be commit 5ef0286b56b368abd4da2cbe3d826a3438f3acc3)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/nterr.h1
-rw-r--r--source3/libsmb/nterr.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/nterr.h b/source3/include/nterr.h
index b6db14817d..913ea5799e 100644
--- a/source3/include/nterr.h
+++ b/source3/include/nterr.h
@@ -559,6 +559,7 @@
#define NT_STATUS_TOO_MANY_LINKS NT_STATUS(0xC0000000 | 0x0265)
#define NT_STATUS_QUOTA_LIST_INCONSISTENT NT_STATUS(0xC0000000 | 0x0266)
#define NT_STATUS_FILE_IS_OFFLINE NT_STATUS(0xC0000000 | 0x0267)
+#define NT_STATUS_DS_NO_MORE_RIDS NT_STATUS(0xC0000000 | 0x02a8)
#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)
diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c
index db522556e4..35ebc3d339 100644
--- a/source3/libsmb/nterr.c
+++ b/source3/libsmb/nterr.c
@@ -533,6 +533,7 @@ static const nt_err_code_struct nt_errs[] =
{ "NT_STATUS_TOO_MANY_LINKS", NT_STATUS_TOO_MANY_LINKS },
{ "NT_STATUS_QUOTA_LIST_INCONSISTENT", NT_STATUS_QUOTA_LIST_INCONSISTENT },
{ "NT_STATUS_FILE_IS_OFFLINE", NT_STATUS_FILE_IS_OFFLINE },
+ { "NT_STATUS_DS_NO_MORE_RIDS", NT_STATUS_DS_NO_MORE_RIDS },
{ "NT_STATUS_NOT_A_REPARSE_POINT", NT_STATUS_NOT_A_REPARSE_POINT },
{ "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
{ "STATUS_MORE_ENTRIES", STATUS_MORE_ENTRIES },