From: Arran Cudbard-Bell Date: Thu, 4 Sep 2025 11:01:47 +0000 (+0200) Subject: Equality not assignment... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9b192ccfe1b5ca548591de0e16e02cfe0821db7b;p=thirdparty%2Ffreeradius-server.git Equality not assignment... --- 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)