From: Josh McCullough Date: Wed, 12 Apr 2023 17:08:18 +0000 (-0400) Subject: http2: fix typo in infof() call X-Git-Tag: curl-8_1_0~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=233b4e4589f38fe430af217d97252e32a30e7c31;p=thirdparty%2Fcurl.git http2: fix typo in infof() call Closes #10940 --- diff --git a/lib/http2.c b/lib/http2.c index 86b3534853..fe0f6bc6c5 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -1099,7 +1099,7 @@ static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame, if(data) { DEBUGF(LOG_CF(data, cf, "recv GOAWAY, error=%d, last_stream=%u", ctx->goaway_error, ctx->last_stream_id)); - infof(data, "recveived GOAWAY, error=%d, last_stream=%u", + infof(data, "received GOAWAY, error=%d, last_stream=%u", ctx->goaway_error, ctx->last_stream_id); multi_connchanged(data->multi); }