summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-02-28 09:04:05 +0000
committerVolker Lendecke <vlendec@samba.org>2007-02-28 09:04:05 +0000
commit5207380a5d1ae9215c18d2a0fe97c947e9549fd3 (patch)
treef3bf5e7ac58347b86bd5871cb1b761035b69f423
parent93bd57c7651e8e762a5db0b38c17ecc5f2da9aac (diff)
downloadsamba-5207380a5d1ae9215c18d2a0fe97c947e9549fd3.tar.gz
r21581: Add an error code I just got
-rw-r--r--source/include/nterr.h1
-rw-r--r--source/libsmb/nterr.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/source/include/nterr.h b/source/include/nterr.h
index b6db14817d4..913ea5799e3 100644
--- a/source/include/nterr.h
+++ b/source/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/source/libsmb/nterr.c b/source/libsmb/nterr.c
index db522556e4c..35ebc3d3397 100644
--- a/source/libsmb/nterr.c
+++ b/source/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 },