git: ee1e748d217a - stable/13 - carp(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 03 Mar 2024 17:51:10 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=ee1e748d217ae80c12d021ac4d463c385dcd15af
commit ee1e748d217ae80c12d021ac4d463c385dcd15af
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-02-27 16:39:57 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-03-03 17:50:31 +0000
carp(4): Fix a typo in a source code comment
- s/successfull/successful/
(cherry picked from commit 6bce41a38e32decbce80bb1586cdd9400c83eb97)
---
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 dc3914c6f77a..cc7add7c3d64 100644
--- a/sys/netinet/ip_carp.c
+++ b/sys/netinet/ip_carp.c
@@ -853,7 +853,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.