aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2014-06-15 12:24:47 +0200
committerDan Fandrich <dan@coneharvesters.com>2014-06-15 12:24:47 +0200
commit740ebcd86ee06085dfb8a39c2792f87e641255f6 (patch)
tree17f4cbb6a5d0a92e62c985f60d6ebda6837c5a59 /lib/http.c
parentc06e76f6fe0da2c9d06f15b6a57af78155c43149 (diff)
https: Fix build when http2 is disabled
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 3cf7346d8..78791ee1a 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -2285,7 +2285,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
if(!(conn->handler->flags&PROTOPT_SSL) &&
(data->set.httpversion == CURL_HTTP_VERSION_2_0)) {
- /* append HTTP2 updrade magic stuff to the HTTP request if it isn't done
+ /* append HTTP2 upgrade magic stuff to the HTTP request if it isn't done
over SSL */
result = Curl_http2_request_upgrade(req_buffer, conn);
if(result)