aboutsummaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2019-04-03 17:16:18 +0200
committerDaniel Gustafsson <daniel@yesql.se>2019-04-03 22:06:06 +0200
commit7b758e9835f120338c28c788b02cb4d68c76e7ea (patch)
tree0ef8016a9098095217369569f8ef3d80a3c1ab0d /lib/http2.c
parent6227e2bd07246de7a751b8de8cece6020802c264 (diff)
documentation: Fix several typos
Closes #3724 Reviewed-by: Jakub Zakrzewski Reviewed-by: Daniel Gustafsson
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 b5c53cdf6..e0ec29689 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -970,7 +970,7 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
char *h;
if(!strcmp(":authority", (const char *)name)) {
- /* psuedo headers are lower case */
+ /* pseudo headers are lower case */
int rc = 0;
char *check = aprintf("%s:%d", conn->host.name, conn->remote_port);
if(!check)