From: Günther Deschner Date: Mon, 26 May 2008 12:19:28 +0000 (+0200) Subject: doserr: add WERR_REVISION_MISMATCH. X-Git-Tag: samba-3.3.0pre1~1118^2~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=017ad275e51ff2d9ddfb4390979f16868f3e6a3f;p=thirdparty%2Fsamba.git doserr: add WERR_REVISION_MISMATCH. Guenther --- diff --git a/source/include/doserr.h b/source/include/doserr.h index 44ce73973ca..68dc0c13c02 100644 --- a/source/include/doserr.h +++ b/source/include/doserr.h @@ -206,6 +206,7 @@ #define WERR_INVALID_COMPUTER_NAME W_ERROR(1210) #define WERR_INVALID_DOMAINNAME W_ERROR(1212) #define WERR_MACHINE_LOCKED W_ERROR(1271) +#define WERR_REVISION_MISMATCH W_ERROR(1306) #define WERR_NO_LOGON_SERVERS W_ERROR(1311) #define WERR_NO_SUCH_LOGON_SESSION W_ERROR(1312) #define WERR_USER_ALREADY_EXISTS W_ERROR(1316) diff --git a/source/libsmb/doserr.c b/source/libsmb/doserr.c index 450d6ee9110..163656fb55f 100644 --- a/source/libsmb/doserr.c +++ b/source/libsmb/doserr.c @@ -64,6 +64,7 @@ werror_code_struct dos_errs[] = { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, { "WERR_USER_EXISTS", WERR_USER_EXISTS }, + { "WERR_REVISION_MISMATCH", WERR_REVISION_MISMATCH }, { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS }, { "WERR_NO_SUCH_LOGON_SESSION", WERR_NO_SUCH_LOGON_SESSION }, { "WERR_USER_ALREADY_EXISTS", WERR_USER_ALREADY_EXISTS },