From ef2e26c91b80556af033d3335e55f5dfa6fff31d Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 13 Aug 2003 01:53:07 +0000 Subject: first public release of samba4 code (This used to be commit b0510b5428b3461aeb9bbe3cc95f62fc73e2b97f) --- source4/libcli/util/doserr.c | 91 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 source4/libcli/util/doserr.c (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c new file mode 100644 index 0000000000..28bad6109d --- /dev/null +++ b/source4/libcli/util/doserr.c @@ -0,0 +1,91 @@ +/* + * Unix SMB/CIFS implementation. + * DOS error routines + * Copyright (C) Tim Potter 2002. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +/* DOS error codes. please read doserr.h */ + +#include "includes.h" + +typedef const struct +{ + const char *dos_errstr; + WERROR werror; +} werror_code_struct; + +werror_code_struct dos_errs[] = +{ + { "WERR_OK", WERR_OK }, + { "WERR_BADFILE", WERR_BADFILE }, + { "WERR_ACCESS_DENIED", WERR_ACCESS_DENIED }, + { "WERR_BADFID", WERR_BADFID }, + { "WERR_BADFUNC", WERR_BADFUNC }, + { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER }, + { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE }, + { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS }, + { "WERR_INVALID_PARAM", WERR_INVALID_PARAM }, + { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED }, + { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD }, + { "WERR_NOMEM", WERR_NOMEM }, + { "WERR_INVALID_NAME", WERR_INVALID_NAME }, + { "WERR_UNKNOWN_LEVEL", WERR_UNKNOWN_LEVEL }, + { "WERR_OBJECT_PATH_INVALID", WERR_OBJECT_PATH_INVALID }, + { "WERR_NO_MORE_ITEMS", WERR_NO_MORE_ITEMS }, + { "WERR_MORE_DATA", WERR_MORE_DATA }, + { "WERR_UNKNOWN_PRINTER_DRIVER", WERR_UNKNOWN_PRINTER_DRIVER }, + { "WERR_INVALID_PRINTER_NAME", WERR_INVALID_PRINTER_NAME }, + { "WERR_PRINTER_ALREADY_EXISTS", WERR_PRINTER_ALREADY_EXISTS }, + { "WERR_INVALID_DATATYPE", WERR_INVALID_DATATYPE }, + { "WERR_INVALID_ENVIRONMENT", WERR_INVALID_ENVIRONMENT }, + { "WERR_INVALID_FORM_NAME", WERR_INVALID_FORM_NAME }, + { "WERR_INVALID_FORM_SIZE", WERR_INVALID_FORM_SIZE }, + { "WERR_BUF_TOO_SMALL", WERR_BUF_TOO_SMALL }, + { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND }, + { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, + { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, + { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, + { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES }, + { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL }, + { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE }, + { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER }, + { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR }, + { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, + { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, + { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, + { NULL, W_ERROR(0) } +}; + +/***************************************************************************** + returns a windows error message. not amazingly helpful, but better than a number. + *****************************************************************************/ +const char *win_errstr(WERROR werror) +{ + static pstring msg; + int idx = 0; + + slprintf(msg, sizeof(msg), "DOS code 0x%08x", W_ERROR_V(werror)); + + while (dos_errs[idx].dos_errstr != NULL) { + if (W_ERROR_V(dos_errs[idx].werror) == + W_ERROR_V(werror)) + return dos_errs[idx].dos_errstr; + idx++; + } + + return msg; +} -- cgit From d285c6f14f7ad7037e1a81d59da8b3c892a49884 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 17 Nov 2003 11:55:56 +0000 Subject: * add another WERR err code * use the top-level function argument printing to show more detail in RPC-* tests (This used to be commit 33bb8785625b1845750f28f2d810e7096afe9f8e) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 28bad6109d..c4ec869961 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -35,6 +35,7 @@ werror_code_struct dos_errs[] = { "WERR_ACCESS_DENIED", WERR_ACCESS_DENIED }, { "WERR_BADFID", WERR_BADFID }, { "WERR_BADFUNC", WERR_BADFUNC }, + { "WERR_BAD_NETPATH", WERR_BAD_NETPATH }, { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER }, { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE }, { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS }, -- cgit From f3d946646975cc04c5abd6b41adaf547175d6aab Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 30 Aug 2004 05:33:49 +0000 Subject: r2102: fixed a race condition when handling dos errors that are in our table. Should get rid of the static buffer completely at some point. (This used to be commit e0bda611121ed1f4afc2bfe83853e5521c494164) --- source4/libcli/util/doserr.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index c4ec869961..b8605864fc 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -22,13 +22,12 @@ #include "includes.h" -typedef const struct -{ +struct werror_code_struct { const char *dos_errstr; WERROR werror; -} werror_code_struct; +}; -werror_code_struct dos_errs[] = +static const struct werror_code_struct dos_errs[] = { { "WERR_OK", WERR_OK }, { "WERR_BADFILE", WERR_BADFILE }, @@ -79,8 +78,6 @@ const char *win_errstr(WERROR werror) static pstring msg; int idx = 0; - slprintf(msg, sizeof(msg), "DOS code 0x%08x", W_ERROR_V(werror)); - while (dos_errs[idx].dos_errstr != NULL) { if (W_ERROR_V(dos_errs[idx].werror) == W_ERROR_V(werror)) @@ -88,5 +85,7 @@ const char *win_errstr(WERROR werror) idx++; } + slprintf(msg, sizeof(msg), "DOS code 0x%08x", W_ERROR_V(werror)); + return msg; } -- cgit From d78ae0b646028916b59c2beeeefe9c62c1d97517 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Oct 2004 15:26:16 +0000 Subject: r3044: resolve the error code for WERR_DS_OBJ_NOT_FOUND to the name metze (This used to be commit c79bbe54b400f8e088401e1d59a626cb2a37ee34) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index b8605864fc..c8e0e89078 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -67,6 +67,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, + { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, { NULL, W_ERROR(0) } }; -- cgit From 1331667abf1b45abe40353ce70978294314d1a63 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 28 Oct 2004 21:00:38 +0000 Subject: r3331: Add string descriptions for a couple more WERROR's (This used to be commit 1d374cdeb09b856449287cf12a77b23296c82a1d) --- source4/libcli/util/doserr.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index c8e0e89078..8f997cf092 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -68,9 +68,19 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, + { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, + { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, + { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE }, + { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, { NULL, W_ERROR(0) } }; + + + +/* DFS errors */ + /***************************************************************************** returns a windows error message. not amazingly helpful, but better than a number. *****************************************************************************/ -- cgit From 3129264308c7c68bfe94228dcb7af99876d93dff Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 22 Nov 2004 14:28:09 +0000 Subject: r3910: add some error codes metze (This used to be commit 64570b7a4734ec1cc56a07e6bd9b20a155a876c0) --- source4/libcli/util/doserr.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 8f997cf092..0e2270d8f6 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -67,6 +67,12 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, + { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, + { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, + { "WERR_NO_SUCH_DOMAIN", WERR_NO_SUCH_DOMAIN }, + { "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 }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, -- cgit From 4b7960a091916613ad89e9ef9e4de857b08c8e24 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 7 Dec 2004 09:18:56 +0000 Subject: r4084: add some more error codes metze (This used to be commit e5db58526825476fd6d8d80c8ee6c3bca0e23c84) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 0e2270d8f6..d81280bff6 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -74,6 +74,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, + { "WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX", WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, -- cgit From a7c70d4c5e11c515f1d09b88a83fb79baaf47e15 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 13 Dec 2004 11:37:47 +0000 Subject: r4177: add some more error codes metze (This used to be commit e624bb52886db80a3600b79494ad1150592efebe) --- source4/libcli/util/doserr.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index d81280bff6..ee2ca25435 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -74,7 +74,10 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, + { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, + { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, { "WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX", WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, -- cgit From cb25806d8dcdbf45f6de3b1a86e1c40ee3711fee Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 31 Dec 2004 04:45:13 +0000 Subject: r4431: add WERR_NET_NAME_NOT_FOUND metze (This used to be commit 74e65680fa9a6b8f04c6ae62ec1da49659879fb5) --- source4/libcli/util/doserr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index ee2ca25435..aff46bc8bf 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -59,7 +59,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, - { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES }, + { "WERR_STATUS_MORE_ENTRIES", WERR_STATUS_MORE_ENTRIES }, + { "WERR_NET_NAME_NOT_FOUND", WERR_NET_NAME_NOT_FOUND }, { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL }, { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE }, { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER }, -- cgit From 7ac62a7b133cac8915fe10272c1045d7aa4dc7fa Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 31 Dec 2004 07:21:31 +0000 Subject: r4435: add another error code metze (This used to be commit 02861f63052c48fc85c6694ad8164cc6cc5443d4) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index aff46bc8bf..a9acb7335c 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -61,6 +61,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES", WERR_STATUS_MORE_ENTRIES }, { "WERR_NET_NAME_NOT_FOUND", WERR_NET_NAME_NOT_FOUND }, + { "WERR_DEVICE_NOT_SHARED", WERR_DEVICE_NOT_SHARED }, { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL }, { "WERR_DFS_NO_SUCH_SHARE", WERR_DFS_NO_SUCH_SHARE }, { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER }, -- cgit From 58a957035336119a3a023384fef205ae718fdf1b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 5 Feb 2005 14:40:47 +0000 Subject: r5237: Add error code for "class not registered" (This used to be commit b72a0ac654857273eaaf3c5e32d86abed0af3ceb) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index a9acb7335c..a584def829 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -86,6 +86,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE }, { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, + { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, { NULL, W_ERROR(0) } }; -- cgit From e82aad1ce39a6b7a2e51b9e2cb494d74ec70e158 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 10 Feb 2005 05:09:35 +0000 Subject: r5298: - got rid of pstring.h from includes.h. This at least makes it a bit less likely that anyone will use pstring for new code - got rid of winbind_client.h from includes.h. This one triggered a huge change, as winbind_client.h was including system/filesys.h and defining the old uint32 and uint16 types, as well as its own pstring and fstring. (This used to be commit 9db6c79e902ec538108d6b7d3324039aabe1704f) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index a584def829..b346fea644 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -21,6 +21,7 @@ /* DOS error codes. please read doserr.h */ #include "includes.h" +#include "pstring.h" struct werror_code_struct { const char *dos_errstr; -- cgit From 736797ef7fe3b9cf542fa69281272501f95bfa3f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 11 Mar 2005 10:33:01 +0000 Subject: r5737: add some error codes metze (This used to be commit f543eb4ede54ac361017878574b3f4b6ffc9f2d5) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index b346fea644..83553448a3 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -77,10 +77,12 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, + { "WERR_DS_DNS_LOOKUP_FAILURE", WERR_DS_DNS_LOOKUP_FAILURE }, { "WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX", WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, -- cgit From ef213b02482194a8fed7f37123e08624072694b2 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 17 Mar 2005 20:28:01 +0000 Subject: r5866: Add InitShutdown IDL and torture test. Implement push side of NDR_LEN4|NDR_NOTERM strings (pull side was already present) (This used to be commit ea61ec1122841716ed5d90085ba79e7bf691bd6a) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 83553448a3..577c004422 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -90,6 +90,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE }, { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, + { "WERR_NO_SHUTDOWN_IN_PROGRESS", WERR_NO_SHUTDOWN_IN_PROGRESS }, + { "WERR_SHUTDOWN_ALREADY_IN_PROGRESS", WERR_SHUTDOWN_ALREADY_IN_PROGRESS }, { NULL, W_ERROR(0) } }; -- cgit From 36dcb8425dfe861f74994d13a3b46ade323868d0 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 23 Aug 2005 11:40:26 +0000 Subject: r9514: add some new error codes I was getting with DsGetNCChanges() and DsAddEntry() metze (This used to be commit 2cbbb8ace215f56e4e9affd54027bbd74309ae3a) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 577c004422..4f977b7e75 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -69,6 +69,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR }, { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, + { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, @@ -80,6 +81,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, + { "WERR_DS_SINGLE_VALUE_CONSTRAINT", WERR_DS_SINGLE_VALUE_CONSTRAINT }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, { "WERR_DS_DNS_LOOKUP_FAILURE", WERR_DS_DNS_LOOKUP_FAILURE }, -- cgit From 81021aaa953661e711ba0030ab2644664587ad5b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 26 Aug 2005 08:42:29 +0000 Subject: r9638: add error code that you get when you call DsGetNCChanges() with a tmp_highest_usn which is higher than the real highest of the source dsa metze (This used to be commit e4424d2a6dc7a783e8b3af4a164f8dc801130e44) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 4f977b7e75..eecf923bac 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -81,6 +81,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, + { "WERR_DS_DRA_INTERNAL_ERROR", WERR_DS_DRA_INTERNAL_ERROR }, { "WERR_DS_SINGLE_VALUE_CONSTRAINT", WERR_DS_SINGLE_VALUE_CONSTRAINT }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, -- cgit From b0e342e389d19377ad6c1b4236e60306d662ddab Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 10 Oct 2005 11:21:02 +0000 Subject: r10867: add WERR_UNKNOWN_REVISION errorcode metze (This used to be commit b436206c498ea166b8b9fa47638d5f8f6f4752bf) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index eecf923bac..a32da5a880 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -69,6 +69,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR }, { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, + { "WERR_UNKNOWN_REVISION", WERR_UNKNOWN_REVISION }, { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, -- cgit From b1d3d75c681d99f84aa2c60863597e32cdd24e66 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 31 Oct 2005 02:46:15 +0000 Subject: r11404: Another torture test and a new WERR. Andrew Bartlett (This used to be commit de83b8cd187b28ecb30550c44f9f84e373df692e) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index a32da5a880..e1ef9d930a 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -72,6 +72,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_UNKNOWN_REVISION", WERR_UNKNOWN_REVISION }, { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, + { "WERR_INVALID_COMPUTERNAME", WERR_INVALID_COMPUTERNAME }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, { "WERR_NO_SUCH_DOMAIN", WERR_NO_SUCH_DOMAIN }, -- cgit From 39fd6db42b4186f573ab4728509d6b8a7c8a6973 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 21 May 2006 12:57:36 +0000 Subject: r15775: add some privilege related WERROR codes metze (This used to be commit 4e8c9bbd768a0d3f8719d8f2005d9b1b527c44fd) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index e1ef9d930a..65e9470280 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -74,6 +74,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, { "WERR_INVALID_COMPUTERNAME", WERR_INVALID_COMPUTERNAME }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, + { "WERR_NO_SUCH_PRIVILEGE", WERR_NO_SUCH_PRIVILEGE }, + { "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_DS_SERVICE_BUSY", WERR_DS_SERVICE_BUSY }, -- cgit From 91e4f9f6d85eadf10130b21c8ca341d0ddd5094c Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 4 Jul 2006 16:42:09 +0000 Subject: r16801: Adding WERR_DS_DRA_ACCESS_DENIED. Guenther (This used to be commit 075242b97614202ee265577c9e5dd499e56bd768) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 65e9470280..8dd9181f7b 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -89,6 +89,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SINGLE_VALUE_CONSTRAINT", WERR_DS_SINGLE_VALUE_CONSTRAINT }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, + { "WERR_DS_DRA_ACCESS_DENIED", WERR_DS_DRA_ACCESS_DENIED }, { "WERR_DS_DNS_LOOKUP_FAILURE", WERR_DS_DNS_LOOKUP_FAILURE }, { "WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX", WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, -- cgit From 3455998edc03268b7b73c80cf1630127e5a3f8df Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 5 Aug 2006 06:20:55 +0000 Subject: r17414: add new error code metze (This used to be commit e15a015a1d9aa3872271c0c5542e7d055a6f673a) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 8dd9181f7b..91a47bfbb5 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -86,6 +86,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, { "WERR_DS_DRA_INTERNAL_ERROR", WERR_DS_DRA_INTERNAL_ERROR }, + { "WERR_DS_DRA_OUT_OF_MEM", WERR_DS_DRA_OUT_OF_MEM }, { "WERR_DS_SINGLE_VALUE_CONSTRAINT", WERR_DS_SINGLE_VALUE_CONSTRAINT }, { "WERR_DS_DRA_DB_ERROR", WERR_DS_DRA_DB_ERROR }, { "WERR_DS_DRA_NO_REPLICA", WERR_DS_DRA_NO_REPLICA }, -- cgit From b0a264f1ae1457910a66a118104d172d2e73637b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 16 Aug 2006 08:53:25 +0000 Subject: r17567: add error code I got from DsGetNCChanges when I don't use the DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION flag on DsBind metze (This used to be commit 8458ee72c5c1005ab80b9f7ea6efe617e5c76106) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 91a47bfbb5..c7d7053165 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -101,6 +101,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, { "WERR_NO_SHUTDOWN_IN_PROGRESS", WERR_NO_SHUTDOWN_IN_PROGRESS }, { "WERR_SHUTDOWN_ALREADY_IN_PROGRESS", WERR_SHUTDOWN_ALREADY_IN_PROGRESS }, + { "WERR_SEC_E_ALGORITHM_MISMATCH", WERR_SEC_E_ALGORITHM_MISMATCH }, { NULL, W_ERROR(0) } }; -- cgit From f3fd73ed52349a75890c30a7dfac72fa20618e3a Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 18 Sep 2006 20:44:54 +0000 Subject: r18633: Add a couple of new WERR codes encountered with dfs torture testing. Guenther (This used to be commit e2879f6fc21e5ca96b24ed11e4a460a0ebada8c3) --- source4/libcli/util/doserr.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index c7d7053165..c0a4e2cb96 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -36,9 +36,10 @@ static const struct werror_code_struct dos_errs[] = { "WERR_BADFID", WERR_BADFID }, { "WERR_BADFUNC", WERR_BADFUNC }, { "WERR_BAD_NETPATH", WERR_BAD_NETPATH }, + { "WERR_UNEXP_NET_ERR", WERR_UNEXP_NET_ERR }, { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER }, { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE }, - { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS }, + { "WERR_FILE_EXISTS", WERR_FILE_EXISTS }, { "WERR_INVALID_PARAM", WERR_INVALID_PARAM }, { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED }, { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD }, @@ -46,6 +47,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_NAME", WERR_INVALID_NAME }, { "WERR_UNKNOWN_LEVEL", WERR_UNKNOWN_LEVEL }, { "WERR_OBJECT_PATH_INVALID", WERR_OBJECT_PATH_INVALID }, + { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS }, { "WERR_NO_MORE_ITEMS", WERR_NO_MORE_ITEMS }, { "WERR_MORE_DATA", WERR_MORE_DATA }, { "WERR_UNKNOWN_PRINTER_DRIVER", WERR_UNKNOWN_PRINTER_DRIVER }, @@ -55,10 +57,12 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_ENVIRONMENT", WERR_INVALID_ENVIRONMENT }, { "WERR_INVALID_FORM_NAME", WERR_INVALID_FORM_NAME }, { "WERR_INVALID_FORM_SIZE", WERR_INVALID_FORM_SIZE }, + { "WERR_ALREADY_SHARED", WERR_ALREADY_SHARED }, { "WERR_BUF_TOO_SMALL", WERR_BUF_TOO_SMALL }, { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND }, { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, + { "WERR_DEVICE_NOT_AVAILABLE", WERR_DEVICE_NOT_AVAILABLE }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES", WERR_STATUS_MORE_ENTRIES }, { "WERR_NET_NAME_NOT_FOUND", WERR_NET_NAME_NOT_FOUND }, @@ -97,6 +101,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE }, + { "WERR_NOT_FOUND", WERR_NOT_FOUND }, { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, { "WERR_NO_SHUTDOWN_IN_PROGRESS", WERR_NO_SHUTDOWN_IN_PROGRESS }, -- cgit From 333557e28fc1c1934756b96f08711e050568926f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Sat, 23 Sep 2006 19:04:39 +0000 Subject: r18847: Add WERR_NO_SYSTEM_RESOURCES showing up in dfs torture testing. Guenther (This used to be commit 692746ff8d1352a93a19ba9d537ca894a2ea186f) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index c0a4e2cb96..ed1700aeb0 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/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 }, -- cgit From 7c793e1bb74593357708e92dba6a99d89ac77c59 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Sat, 7 Oct 2006 05:28:14 +0000 Subject: r19162: Merge WERR code from Samba 3. Guenther (This used to be commit d9562e0f83d76043da7955e89b1fff8a1d921a36) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index ed1700aeb0..fe2b555ab6 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -78,6 +78,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, { "WERR_INVALID_COMPUTERNAME", WERR_INVALID_COMPUTERNAME }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, + { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS }, { "WERR_NO_SUCH_PRIVILEGE", WERR_NO_SUCH_PRIVILEGE }, { "WERR_PRIVILEGE_NOT_HELD", WERR_PRIVILEGE_NOT_HELD }, { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, -- cgit From f9609d779dcbae389386ab594605d188c6933766 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 8 Dec 2006 18:01:30 +0000 Subject: r20080: add error code that maps to NT_STATUS_INVALID_NETWORD_RESPONSE metze (This used to be commit cb5c2e9dc6838145fe9f6f2e727a1df26e688467) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index fe2b555ab6..6f0d27e8ab 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -36,6 +36,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_BADFID", WERR_BADFID }, { "WERR_BADFUNC", WERR_BADFUNC }, { "WERR_BAD_NETPATH", WERR_BAD_NETPATH }, + { "WERR_BAD_NET_RESP", WERR_BAD_NET_RESP }, { "WERR_UNEXP_NET_ERR", WERR_UNEXP_NET_ERR }, { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER }, { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE }, -- cgit From f37b7b85821c821c358bf900fd621bf9aada5c35 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 16 Dec 2006 17:21:53 +0000 Subject: r20213: add 2 error codes related to the msDs-IntId attribute metze (This used to be commit dd5df84cccd10e9880648eecbff6faf7252d5e73) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 6f0d27e8ab..4b39dace47 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -100,6 +100,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_DRA_ACCESS_DENIED", WERR_DS_DRA_ACCESS_DENIED }, { "WERR_DS_DNS_LOOKUP_FAILURE", WERR_DS_DNS_LOOKUP_FAILURE }, { "WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX", WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX }, + { "WERR_DS_NO_MSDS_INTID", WERR_DS_NO_MSDS_INTID }, + { "WERR_DS_DUP_MSDS_INTID", WERR_DS_DUP_MSDS_INTID }, { "WERR_GENERAL_FAILURE", WERR_GENERAL_FAILURE }, { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, -- cgit From 11018b0e134bee5bd7f7680114343e9f17f529e1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 28 Dec 2006 12:17:01 +0000 Subject: r20378: add new error code that says the schema mismatches between DC's metze (This used to be commit e769029f42f848db8121c7dcfe5be261861776c8) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 4b39dace47..5a4660c095 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -89,6 +89,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_DRA_SCHEMA_MISMATCH", WERR_DS_DRA_SCHEMA_MISMATCH }, { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, -- cgit From a2f568f0008238bc76f7b8d32f21f75b239a4925 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 29 Dec 2006 10:34:15 +0000 Subject: r20404: add error code for missing attribute syntax metze (This used to be commit 769ce9799b0e9d1ccc5f2155440e5dedf655d40c) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 5a4660c095..c23e62afd8 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -89,6 +89,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_ATT_SCHEMA_REQ_SYNTAX", WERR_DS_ATT_SCHEMA_REQ_SYNTAX }, { "WERR_DS_DRA_SCHEMA_MISMATCH", WERR_DS_DRA_SCHEMA_MISMATCH }, { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, -- cgit From 15f6cf2449898432112140aea9f3f9445ca2ea68 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 14 Jan 2007 15:17:48 +0000 Subject: r20765: add two more schema related error codes metze (This used to be commit 75f5a88f2229fa604726ecb0ebb2b5a4589d5b86) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index c23e62afd8..51a633238f 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -89,6 +89,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DS_SERVICE_UNAVAILABLE", WERR_DS_SERVICE_UNAVAILABLE }, { "WERR_DS_NO_SUCH_OBJECT", WERR_DS_NO_SUCH_OBJECT }, { "WERR_DS_OBJ_NOT_FOUND", WERR_DS_OBJ_NOT_FOUND }, + { "WERR_DS_SCHEMA_NOT_LOADED", WERR_DS_SCHEMA_NOT_LOADED }, + { "WERR_DS_SCHEMA_ALLOC_FAILED", WERR_DS_SCHEMA_ALLOC_FAILED }, { "WERR_DS_ATT_SCHEMA_REQ_SYNTAX", WERR_DS_ATT_SCHEMA_REQ_SYNTAX }, { "WERR_DS_DRA_SCHEMA_MISMATCH", WERR_DS_DRA_SCHEMA_MISMATCH }, { "WERR_DS_DRA_INVALID_PARAMETER", WERR_DS_DRA_INVALID_PARAMETER }, -- cgit From 10c928a94f6fafd79ae4c9e581c793bbf700a9b5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 12 Feb 2007 09:36:53 +0000 Subject: r21291: add two more error codes metze (This used to be commit dd04c5dec58b18048ca5029f7bfe513242cbe4e9) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 51a633238f..3f646f4be5 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -115,6 +115,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, { "WERR_NO_SHUTDOWN_IN_PROGRESS", WERR_NO_SHUTDOWN_IN_PROGRESS }, { "WERR_SHUTDOWN_ALREADY_IN_PROGRESS", WERR_SHUTDOWN_ALREADY_IN_PROGRESS }, + { "WERR_SEC_E_ENCRYPT_FAILURE", WERR_SEC_E_ENCRYPT_FAILURE }, + { "WERR_SEC_E_DECRYPT_FAILURE", WERR_SEC_E_DECRYPT_FAILURE }, { "WERR_SEC_E_ALGORITHM_MISMATCH", WERR_SEC_E_ALGORITHM_MISMATCH }, { NULL, W_ERROR(0) } }; -- cgit From 505fd4eb9901a1ff8ecbd244fe2227eae59ca2d6 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 28 Feb 2007 17:19:35 +0000 Subject: r21591: add new error code metze (This used to be commit 04da3db29d57ffeab3ba39551b326b8c176a5bcb) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 3f646f4be5..716ca438db 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -73,6 +73,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_NO_SUCH_SERVER", WERR_DFS_NO_SUCH_SERVER }, { "WERR_DFS_INTERNAL_ERROR", WERR_DFS_INTERNAL_ERROR }, { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, + { "WERR_LOGON_FAILURE", WERR_LOGON_FAILURE }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, { "WERR_UNKNOWN_REVISION", WERR_UNKNOWN_REVISION }, { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, -- cgit From eb9ae52981d0275d3830fb533a06472aef3508db Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 8 Jun 2007 10:32:29 +0000 Subject: r23381: Merge netr_GetDcName WERROR return and WERROR_DOMAIN_CONTROLLER_NOT_FOUND from SAMBA_3_0. Guenther (This used to be commit 841ad140a34648ff52d5e44a6642f346ef9eee02) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 716ca438db..76c59570a9 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -63,6 +63,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_JOB_NOT_FOUND", WERR_JOB_NOT_FOUND }, { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, + { "WERR_DOMAIN_CONTROLLER_NOT_FOUND", WERR_DOMAIN_CONTROLLER_NOT_FOUND }, { "WERR_DEVICE_NOT_AVAILABLE", WERR_DEVICE_NOT_AVAILABLE }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES", WERR_STATUS_MORE_ENTRIES }, -- cgit From b8d69a7ea2505b706ff7c74d7c97bc89d82dfa07 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 02:46:15 +0000 Subject: r23795: more v2->v3 conversion (This used to be commit 84b468b2f8f2dffda89593f816e8bc6a8b6d42ac) --- source4/libcli/util/doserr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 76c59570a9..a81d98a8e9 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -5,7 +5,7 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, -- cgit From cd1217ff5ff18e53c6c9fa3d4f4fd56193fe2a17 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 05:23:25 +0000 Subject: r23801: The FSF has moved around a lot. This fixes their Mass Ave address. (This used to be commit 5c9b19271e0e3ad897499707003ce4703ffa4870) --- source4/libcli/util/doserr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index a81d98a8e9..3b1c2d264a 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * along with this program; if not, see . */ /* DOS error codes. please read doserr.h */ -- cgit From 5f6b501f217bf95522e2d1fe63ee1298feb1abd7 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Aug 2007 08:25:15 +0000 Subject: r24146: It is not an error for a Win2k3-only server not to support the NT4 replication call. Andrew Bartlett (This used to be commit 59cba32c09f5b014788e4fb0479ed31f26a3d7e2) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 3b1c2d264a..d62a31c1fa 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -75,6 +75,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DFS_CANT_CREATE_JUNCT", WERR_DFS_CANT_CREATE_JUNCT }, { "WERR_LOGON_FAILURE", WERR_LOGON_FAILURE }, { "WERR_INVALID_SECURITY_DESCRIPTOR", WERR_INVALID_SECURITY_DESCRIPTOR }, + { "WERR_INVALID_DOMAIN_ROLE", WERR_INVALID_DOMAIN_ROLE }, { "WERR_UNKNOWN_REVISION", WERR_UNKNOWN_REVISION }, { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, -- cgit From 922101afbd64b42c01e1093b9d58fff24b1f852e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 7 Sep 2007 22:01:15 +0000 Subject: r25010: Avoid uses of pstring (This used to be commit cce7785474fc536dd44b39403c785b524b128144) --- source4/libcli/util/doserr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index d62a31c1fa..49818e573a 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -20,7 +20,6 @@ /* DOS error codes. please read doserr.h */ #include "includes.h" -#include "pstring.h" struct werror_code_struct { const char *dos_errstr; @@ -133,7 +132,7 @@ static const struct werror_code_struct dos_errs[] = *****************************************************************************/ const char *win_errstr(WERROR werror) { - static pstring msg; + static char msg[40]; int idx = 0; while (dos_errs[idx].dos_errstr != NULL) { -- cgit From 4860557842a8b5e2c5ceba03c64f42996f0bf60c Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 16 Oct 2007 11:39:40 +0200 Subject: r25665: Add some more WERR codes. Guenther (This used to be commit 846d81c0ade7a1b56366feb4338312c24dc4351b) --- source4/libcli/util/doserr.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 49818e573a..28618dbf2b 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -119,6 +119,9 @@ static const struct werror_code_struct dos_errs[] = { "WERR_SEC_E_ENCRYPT_FAILURE", WERR_SEC_E_ENCRYPT_FAILURE }, { "WERR_SEC_E_DECRYPT_FAILURE", WERR_SEC_E_DECRYPT_FAILURE }, { "WERR_SEC_E_ALGORITHM_MISMATCH", WERR_SEC_E_ALGORITHM_MISMATCH }, + { "WERR_NOT_AUTHENTICATED", WERR_NOT_AUTHENTICATED }, + { "WERR_CALL_NOT_IMPLEMENTED", WERR_CALL_NOT_IMPLEMENTED }, + { "WERR_FRS_INVALID_SERVICE_PARAMETER", WERR_FRS_INVALID_SERVICE_PARAMETER }, { NULL, W_ERROR(0) } }; -- cgit From 177faf940f79398303c5566ff2771a4b742bd862 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 16 Oct 2007 17:22:03 +0200 Subject: r25672: Some more FRS werrors. Guenther (This used to be commit 8fa3de8dca9e9d0d9f7fc79e4fc78b85313f870b) --- source4/libcli/util/doserr.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 28618dbf2b..e94b50a6de 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -122,6 +122,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_NOT_AUTHENTICATED", WERR_NOT_AUTHENTICATED }, { "WERR_CALL_NOT_IMPLEMENTED", WERR_CALL_NOT_IMPLEMENTED }, { "WERR_FRS_INVALID_SERVICE_PARAMETER", WERR_FRS_INVALID_SERVICE_PARAMETER }, + { "WERR_FRS_SYSVOL_IS_BUSY", WERR_FRS_SYSVOL_IS_BUSY }, + { "WERR_FRS_INSUFFICIENT_PRIV", WERR_FRS_INSUFFICIENT_PRIV }, { NULL, W_ERROR(0) } }; -- cgit From b4ddef5942990c266e8cf8497da15aef7a357c33 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 7 Nov 2007 20:45:04 +0100 Subject: r25897: Add WERR_INVALID_FLAGS. Guenther (This used to be commit c3023eaeb389f44b64becc383552df0debfc232d) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index e94b50a6de..19984cf2e9 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -111,6 +111,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_PRINTQ_FULL", WERR_PRINTQ_FULL }, { "WERR_NO_SPOOL_SPACE", WERR_NO_SPOOL_SPACE }, { "WERR_CAN_NOT_COMPLETE", WERR_CAN_NOT_COMPLETE }, + { "WERR_INVALID_FLAGS", WERR_INVALID_FLAGS }, { "WERR_NOT_FOUND", WERR_NOT_FOUND }, { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, -- cgit From e66d7d8074f01536ad49ed1195d1503b2f162938 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 20 Nov 2007 12:43:11 +0100 Subject: r26060: Add some error codes from remote join api. Guenther (This used to be commit 73f231cba3fde4b2c5078b7c6dd52c3dac8cd1ce) --- source4/libcli/util/doserr.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index 19984cf2e9..b480946401 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -62,6 +62,9 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, { "WERR_DOMAIN_CONTROLLER_NOT_FOUND", WERR_DOMAIN_CONTROLLER_NOT_FOUND }, + { "WERR_SETUP_NOT_JOINED", WERR_SETUP_NOT_JOINED }, + { "WERR_SETUP_ALREADY_JOINED", WERR_SETUP_ALREADY_JOINED }, + { "WERR_SETUP_DOMAIN_CONTROLLER", WERR_SETUP_DOMAIN_CONTROLLER }, { "WERR_DEVICE_NOT_AVAILABLE", WERR_DEVICE_NOT_AVAILABLE }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES", WERR_STATUS_MORE_ENTRIES }, -- cgit From 017ee874858d13cb77738a885d9320c659f49e18 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 26 Nov 2007 23:58:39 +0100 Subject: r26133: Add some more error codes from wkssvc testing. Guenther (This used to be commit 0cf974ee33ba0dbd41c554db2fd1d0458e99e3d1) --- source4/libcli/util/doserr.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index b480946401..d36532dcf4 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -41,6 +41,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_FILE_EXISTS", WERR_FILE_EXISTS }, { "WERR_INVALID_PARAM", WERR_INVALID_PARAM }, { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED }, + { "WERR_DUP_NAME", WERR_DUP_NAME }, { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD }, { "WERR_NOMEM", WERR_NOMEM }, { "WERR_INVALID_NAME", WERR_INVALID_NAME }, @@ -62,6 +63,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, { "WERR_DOMAIN_CONTROLLER_NOT_FOUND", WERR_DOMAIN_CONTROLLER_NOT_FOUND }, + { "WERR_TIME_DIFF_AT_DC", WERR_TIME_DIFF_AT_DC }, { "WERR_SETUP_NOT_JOINED", WERR_SETUP_NOT_JOINED }, { "WERR_SETUP_ALREADY_JOINED", WERR_SETUP_ALREADY_JOINED }, { "WERR_SETUP_DOMAIN_CONTROLLER", WERR_SETUP_DOMAIN_CONTROLLER }, @@ -84,6 +86,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_COMPUTERNAME", WERR_INVALID_COMPUTERNAME }, { "WERR_INVALID_DOMAINNAME", WERR_INVALID_DOMAINNAME }, { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS }, + { "WERR_NO_SUCH_LOGON_SESSION", WERR_NO_SUCH_LOGON_SESSION }, { "WERR_NO_SUCH_PRIVILEGE", WERR_NO_SUCH_PRIVILEGE }, { "WERR_PRIVILEGE_NOT_HELD", WERR_PRIVILEGE_NOT_HELD }, { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, @@ -128,6 +131,8 @@ static const struct werror_code_struct dos_errs[] = { "WERR_FRS_INVALID_SERVICE_PARAMETER", WERR_FRS_INVALID_SERVICE_PARAMETER }, { "WERR_FRS_SYSVOL_IS_BUSY", WERR_FRS_SYSVOL_IS_BUSY }, { "WERR_FRS_INSUFFICIENT_PRIV", WERR_FRS_INSUFFICIENT_PRIV }, + { "WERR_RPC_E_REMOTE_DISABLED", WERR_RPC_E_REMOTE_DISABLED }, + { "WERR_NOT_CONNECTED", WERR_NOT_CONNECTED }, { NULL, W_ERROR(0) } }; -- cgit From 018a61a71178ac162c0b0a1f169de12ee75927cc Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 27 Nov 2007 11:58:33 +0100 Subject: r26160: Add WERR_NAME_NOT_FOUND. Guenther (This used to be commit 66be960c67787ed7355775e619f3973543a4fef8) --- source4/libcli/util/doserr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/libcli/util/doserr.c') diff --git a/source4/libcli/util/doserr.c b/source4/libcli/util/doserr.c index d36532dcf4..be33ba47e2 100644 --- a/source4/libcli/util/doserr.c +++ b/source4/libcli/util/doserr.c @@ -133,6 +133,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_FRS_INSUFFICIENT_PRIV", WERR_FRS_INSUFFICIENT_PRIV }, { "WERR_RPC_E_REMOTE_DISABLED", WERR_RPC_E_REMOTE_DISABLED }, { "WERR_NOT_CONNECTED", WERR_NOT_CONNECTED }, + { "WERR_NAME_NOT_FOUND", WERR_NAME_NOT_FOUND}, { NULL, W_ERROR(0) } }; -- cgit