mirror of https://github.com/FreeRDP/FreeRDP
[core,nla] print name of error code in log
This commit is contained in:
parent
b6f18e0559
commit
555fa2c98a
|
@ -1650,7 +1650,8 @@ int nla_recv_pdu(rdpNla* nla, wStream* s)
|
|||
break;
|
||||
|
||||
default:
|
||||
WLog_ERR(TAG, "SPNEGO failed with NTSTATUS: 0x%08" PRIX32 "", nla->errorCode);
|
||||
WLog_ERR(TAG, "SPNEGO failed with NTSTATUS: %s [0x%08" PRIX32 "]",
|
||||
NtStatus2Tag(nla->errorCode), nla->errorCode);
|
||||
code = FREERDP_ERROR_AUTHENTICATION_FAILED;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue