From c1d4243c5a02dad3159c494697dea9154a6ea199 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 16 Apr 2008 02:37:27 +0200 Subject: [PATCH] errors: Add WERR_NO_SUCH_USER. Guenther (This used to be commit 82803186febfe6a55c1a598073657c2c4a513000) --- source3/include/doserr.h | 1 + source3/libsmb/doserr.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/source3/include/doserr.h b/source3/include/doserr.h index a99475a4e73..65892d3abd8 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -207,6 +207,7 @@ #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) +#define WERR_NO_SUCH_USER W_ERROR(1317) #define WERR_PASSWORD_RESTRICTION W_ERROR(1325) #define WERR_LOGON_FAILURE W_ERROR(1326) #define WERR_NO_SUCH_DOMAIN W_ERROR(1355) diff --git a/source3/libsmb/doserr.c b/source3/libsmb/doserr.c index 3ac15681221..8761106e58c 100644 --- a/source3/libsmb/doserr.c +++ b/source3/libsmb/doserr.c @@ -67,6 +67,7 @@ werror_code_struct dos_errs[] = { "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 }, + { "WERR_NO_SUCH_USER", WERR_NO_SUCH_USER }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES }, { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL }, @@ -132,6 +133,7 @@ werror_str_struct dos_err_strs[] = { { WERR_USER_ALREADY_EXISTS, "User already exists" }, { WERR_PASSWORD_RESTRICTION, "Password does not meet restrictions" }, { WERR_NONE_MAPPED, "Could not map names to SIDs" }, + { WERR_NO_SUCH_USER, "No such User" }, }; /***************************************************************************** -- 2.11.4.GIT