diff mbox

[1/2] Fix typo in eap_example_server.c

Message ID 20161029075331.27865-1-serega.belarus@gmail.com
State Accepted
Headers show

Commit Message

Sergei Sinyak Oct. 29, 2016, 7:53 a.m. UTC
The server sends only requests to the peer,
  and the peer sends only respones to the server.

Signed-off-by: Sergei Sinyak <serega.belarus@gmail.com>
---
 eap_example/eap_example_server.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jouni Malinen Oct. 29, 2016, 9:09 a.m. UTC | #1
Thanks, both patches applied.
diff mbox

Patch

diff --git a/eap_example/eap_example_server.c b/eap_example/eap_example_server.c
index a081b87..0524096 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));
 	}