STABLE14-windows-rxkadunknownkey-20051019

report RXKADUNKNOWNKEY as SEC_E_NO_KERB_KEY


(cherry picked from commit a92aa204855b6459ac483f0dd5b704b4a52edec8)
This commit is contained in:
Jeffrey Altman 2005-10-19 07:58:46 +00:00
parent 01c6a4154c
commit 09ad86b21e

View File

@ -2465,7 +2465,9 @@ void smb_MapNTError(long code, unsigned long *NTStatusp)
NTStatus = 0xC00000BEL; /* Bad Network Path */
}
#endif
else {
else if (code == RXKADUNKNOWNKEY) {
NTStatus = 0xC0000322L; /* Bad Kerberos key */
} else {
NTStatus = 0xC0982001L; /* SMB non-specific error */
}