]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Equality not assignment...
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 4 Sep 2025 11:01:47 +0000 (13:01 +0200)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 4 Sep 2025 11:31:29 +0000 (13:31 +0200)
src/lib/eap/tls.c

index b1e7fc41cfec42f945b1f20e83a6efabde305339..e673de45a2e40b898072e1e1d9f35ac517a0f3e8 100644 (file)
@@ -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)