diff options
author | Günther Deschner <gd@samba.org> | 2008-11-06 13:31:27 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-06 13:40:47 +0100 |
commit | 0be668f147e65cdd8614c6308c7d5ea1bc25f8f5 (patch) | |
tree | 34599188a64352d274c290080c0def2f051749f1 /libcli | |
parent | 87f563c2308b761bc9c42caf5ab240746004e908 (diff) | |
download | samba-0be668f147e65cdd8614c6308c7d5ea1bc25f8f5.tar.gz |
doserr: add WERR_NO_TRUST_SAM_ACCOUNT.
Guenther
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/util/doserr.c | 1 | ||||
-rw-r--r-- | libcli/util/werror.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libcli/util/doserr.c b/libcli/util/doserr.c index 2ab39125df4..160e7bc3e0b 100644 --- a/libcli/util/doserr.c +++ b/libcli/util/doserr.c @@ -135,6 +135,7 @@ static const struct werror_code_struct dos_errs[] = { "WERR_INVALID_FLAGS", WERR_INVALID_FLAGS }, { "WERR_NOT_FOUND", WERR_NOT_FOUND }, { "WERR_SERVER_UNAVAILABLE", WERR_SERVER_UNAVAILABLE }, + { "WERR_NO_TRUST_SAM_ACCOUNT", WERR_NO_TRUST_SAM_ACCOUNT }, { "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 }, diff --git a/libcli/util/werror.h b/libcli/util/werror.h index fe819fce5ec..0d99c7bb318 100644 --- a/libcli/util/werror.h +++ b/libcli/util/werror.h @@ -136,6 +136,7 @@ typedef uint32_t WERROR; #define WERR_TIME_SKEW W_ERROR(1398) #define WERR_EVENTLOG_FILE_CORRUPT W_ERROR(1500) #define WERR_SERVER_UNAVAILABLE W_ERROR(1722) +#define WERR_NO_TRUST_SAM_ACCOUNT W_ERROR(1787) #define WERR_INVALID_FORM_NAME W_ERROR(1902) #define WERR_INVALID_FORM_SIZE W_ERROR(1903) #define WERR_PASSWORD_MUST_CHANGE W_ERROR(1907) |