From 893f78731412f2bf79a507e6ebdcbafbdeacb74d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 12 Sep 2008 10:12:01 +0200 Subject: doserr: add WERR_NO_SUCH_ALIAS. Guenther (This used to be commit e065802a61f22e9fdcd4b911805c42c46a79b3f2) --- source3/include/doserr.h | 1 + source3/libsmb/doserr.c | 1 + 2 files changed, 2 insertions(+) diff --git a/source3/include/doserr.h b/source3/include/doserr.h index c901df28e4..5d3b866d01 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -223,6 +223,7 @@ #define WERR_INVALID_DOMAIN_STATE W_ERROR(1353) #define WERR_INVALID_DOMAIN_ROLE W_ERROR(1354) #define WERR_SPECIAL_ACCOUNT W_ERROR(1371) +#define WERR_NO_SUCH_ALIAS W_ERROR(1376) #define WERR_MEMBER_IN_ALIAS W_ERROR(1378) #define WERR_ALIAS_EXISTS W_ERROR(1379) #define WERR_TIME_SKEW W_ERROR(1398) diff --git a/source3/libsmb/doserr.c b/source3/libsmb/doserr.c index c62918e214..2716e04d91 100644 --- a/source3/libsmb/doserr.c +++ b/source3/libsmb/doserr.c @@ -100,6 +100,7 @@ werror_code_struct dos_errs[] = { "WERR_INVALID_DOMAIN_ROLE", WERR_INVALID_DOMAIN_ROLE }, { "WERR_SPECIAL_ACCOUNT", WERR_SPECIAL_ACCOUNT }, { "WERR_ALIAS_EXISTS", WERR_ALIAS_EXISTS }, + { "WERR_NO_SUCH_ALIAS", WERR_NO_SUCH_ALIAS }, { "WERR_MEMBER_IN_ALIAS", WERR_MEMBER_IN_ALIAS }, { "WERR_TIME_SKEW", WERR_TIME_SKEW }, { "WERR_INVALID_OWNER", WERR_INVALID_OWNER }, -- cgit