summaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorJosh McCullough <JoshMcCullough@users.noreply.github.com>2023-04-12 13:08:18 -0400
committerDaniel Stenberg <daniel@haxx.se>2023-04-13 08:39:56 +0200
commit233b4e4589f38fe430af217d97252e32a30e7c31 (patch)
treea1484b9fd4760b33ff8142671870af158c9b9ffe /lib/http2.c
parentca05e1afba7088c2f7e96ce47d2d3a249ce7a903 (diff)
downloadcurl-233b4e4589f38fe430af217d97252e32a30e7c31.tar.gz
http2: fix typo in infof() call
Closes #10940
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 86b353485..fe0f6bc6c 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);
}