From 3f024f3be51ee194cdb46ccee33fd21d760cb5a9 Mon Sep 17 00:00:00 2001 From: Tim Duesterhus Date: Sun, 16 Sep 2018 00:42:30 +0200 Subject: [PATCH] CLEANUP: http: Fix typo in init_http's comment It read "non-zero" where it should read zero. --- src/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index a8288a020..a556a88a1 100644 --- a/src/http.c +++ b/src/http.c @@ -973,7 +973,7 @@ int http_parse_stline(const struct ist line, struct ist *p1, struct ist *p2, str } -/* post-initializes the HTTP parts. Returns non-zero on error, with +/* post-initializes the HTTP parts. Returns zero on error, with * pointing to the error message. */ int init_http(char **err)