From 85d8b8e9b748b13446f10a22e01806abdd7776af Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Mon, 4 Apr 2016 13:35:19 -0300 Subject: [PATCH] Fixed typo error in the HTTPS client implementation It is ModSecurity not _modesecurity_. Details in issue #1113 --- src/utils/https_client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/https_client.cc b/src/utils/https_client.cc index b7b30dc2..04ba2202 100644 --- a/src/utils/https_client.cc +++ b/src/utils/https_client.cc @@ -100,7 +100,7 @@ bool HttpsClient::download(const std::string &uri) { /* we pass our 'chunk' struct to the callback function */ curl_easy_setopt(curl, CURLOPT_WRITEDATA, this); - curl_easy_setopt(curl, CURLOPT_USERAGENT, "modesecurity3"); + curl_easy_setopt(curl, CURLOPT_USERAGENT, "ModSecurity3"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers_chunk); /* We want Curl to return error in case there is an HTTP error code */