windows-rxkadunknownkey-20051019

report RXKADUNKNOWNKEY as SEC_E_NO_KERB_KEY
This commit is contained in:
Jeffrey Altman 2005-10-19 07:57:52 +00:00
parent 9f0f50a2b1
commit a92aa20485

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 */
}