1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

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)
This commit is contained in:
Stefan Metzmacher 2006-08-16 08:53:25 +00:00 committed by Gerald (Jerry) Carter
parent 2f119fc7a8
commit b0a264f1ae
2 changed files with 4 additions and 0 deletions

View File

@ -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) }
};

View File

@ -265,6 +265,9 @@
#define WERR_DS_DNS_LOOKUP_FAILURE W_ERROR(0x0000214c)
#define WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX W_ERROR(0x00002150)
/* SEC errors */
#define WERR_SEC_E_ALGORITHM_MISMATCH W_ERROR(0x80090331)
#define WERR_FOOBAR WERR_GENERAL_FAILURE
#endif /* _DOSERR_H */