From 692746ff8d1352a93a19ba9d537ca894a2ea186f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Sat, 23 Sep 2006 19:04:39 +0000 Subject: [PATCH] r18847: Add WERR_NO_SYSTEM_RESOURCES showing up in dfs torture testing. Guenther --- source/libcli/util/doserr.c | 1 + source/libcli/util/doserr.h | 1 + 2 files changed, 2 insertions(+) diff --git a/source/libcli/util/doserr.c b/source/libcli/util/doserr.c index c0a4e2cb968..ed1700aeb09 100644 --- a/source/libcli/util/doserr.c +++ b/source/libcli/util/doserr.c @@ -82,6 +82,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_PRIVILEGE_NOT_HELD", WERR_PRIVILEGE_NOT_HELD }, { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, { "WERR_NO_SUCH_DOMAIN", WERR_NO_SUCH_DOMAIN }, + { "WERR_NO_SYSTEM_RESOURCES", WERR_NO_SYSTEM_RESOURCES }, { "WERR_DS_SERVICE_BUSY", WERR_DS_SERVICE_BUSY }, { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, diff --git a/source/libcli/util/doserr.h b/source/libcli/util/doserr.h index d80cdd1052e..d5a6b2e90df 100644 --- a/source/libcli/util/doserr.h +++ b/source/libcli/util/doserr.h @@ -200,6 +200,7 @@ #define WERR_NO_SUCH_USER W_ERROR(1317) #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(1338) #define WERR_NO_SUCH_DOMAIN W_ERROR(1355) +#define WERR_NO_SYSTEM_RESOURCES W_ERROR(1450) #define WERR_SERVER_UNAVAILABLE W_ERROR(1722) #define WERR_INVALID_FORM_NAME W_ERROR(1902) #define WERR_INVALID_FORM_SIZE W_ERROR(1903)