From: Sergei Sinyak Date: Sat, 29 Oct 2016 07:53:30 +0000 (+0300) Subject: Fix typo in eap_example_server.c X-Git-Tag: hostap_2_7~2157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5c15dc1798a5a96ee7331be1abbc7f37a47d30b;p=thirdparty%2Fhostap.git Fix typo in eap_example_server.c The server sends only requests to the peer, and the peer sends only responses to the server. Signed-off-by: Sergei Sinyak --- diff --git a/eap_example/eap_example_server.c b/eap_example/eap_example_server.c index a081b873a..052409694 100644 --- a/eap_example/eap_example_server.c +++ b/eap_example/eap_example_server.c @@ -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)); }