From 6074f76f7dd32d272b6de801f9638d8ebca1cbbf Mon Sep 17 00:00:00 2001 From: BALATON Zoltan Date: Mon, 13 Nov 2017 16:05:54 +0100 Subject: Define a constant for user agent string instead of duplicate strings --- src/download.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/download.c') diff --git a/src/download.c b/src/download.c index 82087df..fab6bba 100644 --- a/src/download.c +++ b/src/download.c @@ -65,7 +65,7 @@ int download_to_buffer(const char* url, char** buf, uint32_t* length) curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, (curl_write_callback)&download_write_buffer_callback); curl_easy_setopt(handle, CURLOPT_WRITEDATA, &response); - curl_easy_setopt(handle, CURLOPT_USERAGENT, "InetURL/1.0"); + curl_easy_setopt(handle, CURLOPT_USERAGENT, USER_AGENT_STRING); curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1); curl_easy_setopt(handle, CURLOPT_URL, url); @@ -128,7 +128,7 @@ int download_to_file(const char* url, const char* filename, int enable_progress) curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, (curl_progress_callback)&download_progress); curl_easy_setopt(handle, CURLOPT_NOPROGRESS, enable_progress > 0 ? 0: 1); - curl_easy_setopt(handle, CURLOPT_USERAGENT, "InetURL/1.0"); + curl_easy_setopt(handle, CURLOPT_USERAGENT, USER_AGENT_STRING); curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1); curl_easy_setopt(handle, CURLOPT_URL, url); -- cgit v1.1-32-gdbae