diff options
author | Günther Deschner <gd@samba.org> | 2015-12-09 15:12:49 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2016-09-28 00:04:35 +0200 |
commit | 6b1c5b485cbac27438623353dfa2d0c521fb93e0 (patch) | |
tree | 5fcea9e768d1a5cc16e502f0a09d870efbea423c /libcli/util | |
parent | 05f272f492cabafa5cc4d38b72bba82d77c5b44e (diff) | |
download | samba-6b1c5b485cbac27438623353dfa2d0c521fb93e0.tar.gz |
werror: replace WERR_CLASS_NOT_REGISTERED with HRES_REGDB_E_CLASSNOTREG
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'libcli/util')
-rw-r--r-- | libcli/util/doserr.c | 1 | ||||
-rw-r--r-- | libcli/util/werror.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/libcli/util/doserr.c b/libcli/util/doserr.c index 64efbb63f36..05e6fe90e85 100644 --- a/libcli/util/doserr.c +++ b/libcli/util/doserr.c @@ -129,7 +129,6 @@ static const struct werror_code_struct dos_errs[] = { "WERR_SEC_E_DECRYPT_FAILURE", WERR_SEC_E_DECRYPT_FAILURE }, { "WERR_SEC_E_ALGORITHM_MISMATCH", WERR_SEC_E_ALGORITHM_MISMATCH }, { "WERR_RPC_E_REMOTE_DISABLED", WERR_RPC_E_REMOTE_DISABLED }, - { "WERR_CLASS_NOT_REGISTERED", WERR_CLASS_NOT_REGISTERED }, /***************************************************************************** Auto-generated Win32 error from: http://msdn.microsoft.com/en-us/library/cc231199%28PROT.10%29.aspx diff --git a/libcli/util/werror.h b/libcli/util/werror.h index 1fc2afbd15f..0b70dafa0b8 100644 --- a/libcli/util/werror.h +++ b/libcli/util/werror.h @@ -111,9 +111,6 @@ typedef uint32_t WERROR; #define WERR_SEC_E_DECRYPT_FAILURE W_ERROR(0x80090330) #define WERR_SEC_E_ALGORITHM_MISMATCH W_ERROR(0x80090331) -/* COM REGDB error codes */ -#define WERR_CLASS_NOT_REGISTERED W_ERROR(0x80040154) /* REGDB_E_CLASSNOTREG */ - /* Generic error code aliases */ #define WERR_FOOBAR WERR_GEN_FAILURE |