Skip to content

Commit

Permalink
missed a few
Browse files Browse the repository at this point in the history
  • Loading branch information
sbSteveK committed Sep 16, 2024
1 parent 2f932ed commit a798351
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/windows/secure_channel_tls_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ static int s_do_server_side_negotiation_step_1(struct aws_channel_handler *handl
if (!(status == SEC_I_CONTINUE_NEEDED || status == SEC_E_OK)) {
AWS_LOGF_ERROR(
AWS_LS_IO_TLS,
"id=%p: error during processing of the ClientHello. SECURITY_STATUS is %lu",
"id=%p: error during processing of the ClientHello. SECURITY_STATUS is %d",
(void *)handler,
(int)status);
aws_error = s_determine_sspi_error(status);
Expand Down Expand Up @@ -792,7 +792,7 @@ static int s_do_server_side_negotiation_step_2(struct aws_channel_handler *handl
} else {
AWS_LOGF_WARN(
AWS_LS_IO_TLS,
"id=%p: Error retrieving negotiated protocol. SECURITY_STATUS is %lu",
"id=%p: Error retrieving negotiated protocol. SECURITY_STATUS is %d",
handler,
(int)status);
aws_error = s_determine_sspi_error(status);
Expand Down Expand Up @@ -901,7 +901,7 @@ static int s_do_client_side_negotiation_step_1(struct aws_channel_handler *handl
if (status != SEC_I_CONTINUE_NEEDED) {
AWS_LOGF_ERROR(
AWS_LS_IO_TLS,
"id=%p: Error sending client/receiving server handshake data. SECURITY_STATUS is %lu",
"id=%p: Error sending client/receiving server handshake data. SECURITY_STATUS is %d",
(void *)handler,
(int)status);
aws_error = s_determine_sspi_error(status);
Expand Down Expand Up @@ -1083,7 +1083,7 @@ static int s_do_client_side_negotiation_step_2(struct aws_channel_handler *handl
} else {
AWS_LOGF_WARN(
AWS_LS_IO_TLS,
"id=%p: Error retrieving negotiated protocol. SECURITY_STATUS is %lu",
"id=%p: Error retrieving negotiated protocol. SECURITY_STATUS is %d",
handler,
(int)status);
aws_error = s_determine_sspi_error(status);
Expand Down

0 comments on commit a798351

Please sign in to comment.