From 9b192ccfe1b5ca548591de0e16e02cfe0821db7b Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Thu, 4 Sep 2025 13:01:47 +0200 Subject: [PATCH] Equality not assignment... --- src/lib/eap/tls.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/eap/tls.c b/src/lib/eap/tls.c index b1e7fc41cf..e673de45a2 100644 --- a/src/lib/eap/tls.c +++ b/src/lib/eap/tls.c @@ -797,10 +797,10 @@ ignore_length: /** Process the result from the last TLS handshake round * * @return - * - eap_tls_session->state = EAP_TLS_FAIL if the message is invalid. - * - eap_tls_session->state = EAP_TLS_HANDLED if we need to send an + * - eap_tls_session->state == EAP_TLS_FAIL if the message is invalid. + * - eap_tls_session->state == EAP_TLS_HANDLED if we need to send an * additional request to the peer. - * - eap_tls_session->state = EAP_TLS_ESTABLISHED if the handshake + * - eap_tls_session->state == EAP_TLS_ESTABLISHED if the handshake * completed successfully, and there's no more data to send. */ static unlang_action_t eap_tls_handshake_resume(request_t *request, void *uctx) -- 2.47.3