1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-16 00:23:52 +03:00

r26160: Add WERR_NAME_NOT_FOUND.

Guenther
(This used to be commit 66be960c67)
This commit is contained in:
Günther Deschner
2007-11-27 11:58:33 +01:00
committed by Stefan Metzmacher
parent 1434003048
commit 018a61a711
2 changed files with 2 additions and 0 deletions

View File

@@ -133,6 +133,7 @@ static const struct werror_code_struct dos_errs[] =
{ "WERR_FRS_INSUFFICIENT_PRIV", WERR_FRS_INSUFFICIENT_PRIV }, { "WERR_FRS_INSUFFICIENT_PRIV", WERR_FRS_INSUFFICIENT_PRIV },
{ "WERR_RPC_E_REMOTE_DISABLED", WERR_RPC_E_REMOTE_DISABLED }, { "WERR_RPC_E_REMOTE_DISABLED", WERR_RPC_E_REMOTE_DISABLED },
{ "WERR_NOT_CONNECTED", WERR_NOT_CONNECTED }, { "WERR_NOT_CONNECTED", WERR_NOT_CONNECTED },
{ "WERR_NAME_NOT_FOUND", WERR_NAME_NOT_FOUND},
{ NULL, W_ERROR(0) } { NULL, W_ERROR(0) }
}; };

View File

@@ -115,6 +115,7 @@ typedef uint32_t WERROR;
#define WERR_JOB_NOT_FOUND W_ERROR(2151) #define WERR_JOB_NOT_FOUND W_ERROR(2151)
#define WERR_DEST_NOT_FOUND W_ERROR(2152) #define WERR_DEST_NOT_FOUND W_ERROR(2152)
#define WERR_NOT_CONNECTED W_ERROR(2250) #define WERR_NOT_CONNECTED W_ERROR(2250)
#define WERR_NAME_NOT_FOUND W_ERROR(2273)
#define WERR_SESSION_NOT_FOUND W_ERROR(2312) #define WERR_SESSION_NOT_FOUND W_ERROR(2312)
#define WERR_FID_NOT_FOUND W_ERROR(2314) #define WERR_FID_NOT_FOUND W_ERROR(2314)
#define WERR_NOT_LOCAL_DOMAIN W_ERROR(2320) #define WERR_NOT_LOCAL_DOMAIN W_ERROR(2320)