From 6bce41a38e32decbce80bb1586cdd9400c83eb97 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Tue, 27 Feb 2024 17:39:57 +0100 Subject: [PATCH] carp(4): Fix a typo in a source code comment - s/successfull/successful/ MFC after: 3 days --- sys/netinet/ip_carp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 66ec28e49af..ddbc13e7c87 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -885,7 +885,7 @@ carp_send_ad_error(struct carp_softc *sc, int error) { /* - * We track errors and successfull sends with this logic: + * We track errors and successful sends with this logic: * - Any error resets success counter to 0. * - MAX_ERRORS triggers demotion. * - MIN_SUCCESS successes resets error counter to 0.