From 9d4144006b470af648a5432bcbf5814514717629 Mon Sep 17 00:00:00 2001 From: Juan Carlos Luciani Date: Tue, 5 Dec 2006 12:03:54 +0000 Subject: [PATCH] Added a new status code and changed the PWDAuthenticate module facility code to be different then the code used by the Krb5Authenticate module. --- CASA/include/casa_status.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CASA/include/casa_status.h b/CASA/include/casa_status.h index 528c0a5e..c58805a7 100644 --- a/CASA/include/casa_status.h +++ b/CASA/include/casa_status.h @@ -89,7 +89,7 @@ typedef uint32_t CasaStatus; #define CASA_FACILITY_AUTHTOKEN 0x7FF #define CASA_FACILITY_KRB5TOKEN 0x7FE -#define CASA_FACILITY_PWTOKEN 0x7FE +#define CASA_FACILITY_PWTOKEN 0x7FD // // Codes above FACILITY_SPECIFIC are component specific status codes. @@ -137,6 +137,7 @@ typedef uint32_t CasaStatus; #define CASA_STATUS_SERVER_ERROR ((CasaStatus)0x00000020) #define CASA_STATUS_NO_CREDENTIALS ((CasaStatus)0x00000021) #define CASA_STATUS_NOT_CONFIGURED ((CasaStatus)0x00000022) +#define CASA_STATUS_INVALID_SERVER_CERTIFICATE ((CasaStatus)0x00000023) //===[ Macro definitions ]==============================