From 6dc7bf0c5ce9ce0b77b0f7b9293467babc685abe Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Wed, 27 Dec 2023 09:37:29 +0100 Subject: [PATCH] hvsock: Fix a typo in a source code comment - s/recieved/received/ MFC after: 3 days --- sys/dev/hyperv/hvsock/hv_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/hyperv/hvsock/hv_sock.c b/sys/dev/hyperv/hvsock/hv_sock.c index 78ec520f1bb..df6f58f6fcb 100644 --- a/sys/dev/hyperv/hvsock/hv_sock.c +++ b/sys/dev/hyperv/hvsock/hv_sock.c @@ -760,7 +760,7 @@ hvs_trans_soreceive(struct socket *so, struct sockaddr **paddr, SOCKBUF_UNLOCK(sb); SOCK_IO_RECV_UNLOCK(so); - /* We recieved a FIN in this call */ + /* We received a FIN in this call */ if (so->so_error == ESHUTDOWN) { if (so->so_snd.sb_state & SBS_CANTSENDMORE) { /* Send has already closed */ -- 2.45.0