http2: fix typo in infof() call

Closes #10940
This commit is contained in:
Josh McCullough 2023-04-12 13:08:18 -04:00 committed by Daniel Stenberg
parent ca05e1afba
commit 233b4e4589
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View 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);
}