From: Joseph Herlant Date: Sun, 25 Nov 2018 21:28:30 +0000 (-0800) Subject: CLEANUP: Fix a typo in the checks header file X-Git-Tag: v1.9-dev9~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b75e63dc59ee440fb81ad482acf31b2786220ad;p=thirdparty%2Fhaproxy.git CLEANUP: Fix a typo in the checks header file Fixes a typo in the code comments of the checks header file. --- diff --git a/include/types/checks.h b/include/types/checks.h index e0a4bd64be..364eee88d1 100644 --- a/include/types/checks.h +++ b/include/types/checks.h @@ -224,7 +224,7 @@ struct tcpcheck_rule { /* match type uses NON-NULL pointer from either string or expect_regex below */ /* sent string is string */ char *string; /* sent or expected string */ - int string_len; /* string lenght */ + int string_len; /* string length */ struct my_regex *expect_regex; /* expected */ int inverse; /* 0 = regular match, 1 = inverse match */ unsigned short port; /* port to connect to */