From ef0ac0a1ad6750291b881203030384b7f7241efb Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sat, 20 Jan 2024 17:29:28 +0100 Subject: [PATCH] tcp_hpts: Fix a typo of a function name in a comment - s/tcp_ouput/tcp_output/ MFC after: 3 days --- sys/netinet/tcp_hpts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/tcp_hpts.c b/sys/netinet/tcp_hpts.c index 73e9997c060f..9d192b17c41a 100644 --- a/sys/netinet/tcp_hpts.c +++ b/sys/netinet/tcp_hpts.c @@ -47,7 +47,7 @@ * * tcp_hpts_insert(tp, HPTS_USEC_TO_SLOTS(550)); * - * The above would schedule tcp_ouput() to be called in 550 useconds. + * The above would schedule tcp_output() to be called in 550 useconds. * Note that if using this mechanism the stack will want to add near * its top a check to prevent unwanted calls (from user land or the * arrival of incoming ack's). So it would add something like: