Commit 04c25237 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not use error message as a format string.

(There was no bug here; this is just to please Quovodis :) )
parent 1fbb3630
......@@ -305,7 +305,7 @@ gnutls_HandshakeAndValidate( tls_session_t *session )
{
if( status & e->flag )
{
msg_Err( session, e->msg );
msg_Err( session, "%s", e->msg );
status &= ~e->flag;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment