]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http2: fix typo in infof() call
authorJosh McCullough <JoshMcCullough@users.noreply.github.com>
Wed, 12 Apr 2023 17:08:18 +0000 (13:08 -0400)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 13 Apr 2023 06:39:56 +0000 (08:39 +0200)
Closes #10940

lib/http2.c

index 86b3534853df86e29cf34203db1e3df1ebc8e946..fe0f6bc6c55a25b8af7169b14de3e2411e9619b0 100644 (file)
@@ -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);
       }