]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Fix typo in eap_example_server.c
authorSergei Sinyak <serega.belarus@gmail.com>
Sat, 29 Oct 2016 07:53:30 +0000 (10:53 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 29 Oct 2016 08:13:28 +0000 (11:13 +0300)
The server sends only requests to the peer,
and the peer sends only responses to the server.

Signed-off-by: Sergei Sinyak <serega.belarus@gmail.com>
eap_example/eap_example_server.c

index a081b873ad2174489a6e683bf481de048c7d7756..05240969423ffad9e8711d90206924b9aca16447 100644 (file)
@@ -277,7 +277,7 @@ int eap_example_server_step(void)
        }
 
        if (process && eap_ctx.eap_if->eapReqData) {
-               /* Send EAP response to the server */
+               /* Send EAP request to the peer */
                eap_example_peer_rx(wpabuf_head(eap_ctx.eap_if->eapReqData),
                                    wpabuf_len(eap_ctx.eap_if->eapReqData));
        }