Skip to content

Commit 85d8b8e

Browse files
committed
Fixed typo error in the HTTPS client implementation
It is ModSecurity not _modesecurity_. Details in issue #1113
1 parent 8d05285 commit 85d8b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/https_client.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ bool HttpsClient::download(const std::string &uri) {
100100
/* we pass our 'chunk' struct to the callback function */
101101
curl_easy_setopt(curl, CURLOPT_WRITEDATA, this);
102102

103-
curl_easy_setopt(curl, CURLOPT_USERAGENT, "modesecurity3");
103+
curl_easy_setopt(curl, CURLOPT_USERAGENT, "ModSecurity3");
104104
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers_chunk);
105105

106106
/* We want Curl to return error in case there is an HTTP error code */

0 commit comments

Comments
 (0)