Hi, This typo is in a code comment so not end-user visible.
The patch is attached, but if you want to view the diff online, you can check: https://github.com/haproxy/haproxy/compare/master...aerostitch:ceanup_stream_typo Thanks, Joseph
From b67b60971611ed3d9769d15c0a097316c2a3a371 Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Thu, 15 Nov 2018 09:14:14 -0800 Subject: [PATCH] CLEANUP: fix a typo found in the stream subsystem This typo is in a code comment so not end-user visible. --- src/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.c b/src/stream.c index fe07d4de..9b9a96b7 100644 --- a/src/stream.c +++ b/src/stream.c @@ -112,7 +112,7 @@ int stream_buf_available(void *arg) /* This function is called from the session handler which detects the end of * handshake, in order to complete initialization of a valid stream. It must be - * called with a completley initialized session. It returns the pointer to + * called with a completely initialized session. It returns the pointer to * the newly created stream, or NULL in case of fatal error. The client-facing * end point is assigned to <origin>, which must be valid. The stream's task * is configured with a nice value inherited from the listener's nice if any. -- 2.19.1

