mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-30 00:00:16 +01:00
fix: l/r/h/http2.c: Fix spelling mistake
Fix spelling mistake it was found while packaging mosquito for debian: I: mosquitto: spelling-error-in-binary Inital Initial [usr/sbin/mosquitto] I: mosquitto: spelling-error-in-binary witholding withholding [usr/sbin/mosquitto] Forwarded: https://github.com/warmcat/libwebsockets/pull/2927 Signed-off-by: Philippe Coval <rzr@users.sf.net>
This commit is contained in:
parent
f9d1f25abe
commit
a6a7fa646e
1 changed files with 2 additions and 2 deletions
|
@ -534,7 +534,7 @@ lws_h2_settings(struct lws *wsi, struct http2_settings *settings,
|
|||
case H2SET_INITIAL_WINDOW_SIZE:
|
||||
if (b > 0x7fffffff) {
|
||||
lws_h2_goaway(nwsi, H2_ERR_FLOW_CONTROL_ERROR,
|
||||
"Inital Window beyond max");
|
||||
"Initial Window beyond max");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -1618,7 +1618,7 @@ lws_h2_parse_end_of_frame(struct lws *wsi)
|
|||
|
||||
if (!h2n->swsi->h2.END_HEADERS) {
|
||||
/* we are not finished yet */
|
||||
lwsl_info("witholding http action for continuation\n");
|
||||
lwsl_info("withholding http action for continuation\n");
|
||||
h2n->cont_exp_sid = h2n->sid;
|
||||
h2n->cont_exp = 1;
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue