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/tss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tss.c') diff --git a/src/tss.c b/src/tss.c index 5a6af44..7f9dded 100644 --- a/src/tss.c +++ b/src/tss.c @@ -970,7 +970,7 @@ plist_t tss_request_send(plist_t tss_request, const char* server_url_string) { curl_easy_setopt(handle, CURLOPT_WRITEDATA, response); curl_easy_setopt(handle, CURLOPT_HTTPHEADER, header); curl_easy_setopt(handle, CURLOPT_POSTFIELDS, request); - curl_easy_setopt(handle, CURLOPT_USERAGENT, "InetURL/1.0"); + curl_easy_setopt(handle, CURLOPT_USERAGENT, USER_AGENT_STRING); curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE, strlen(request)); if (server_url_string) { curl_easy_setopt(handle, CURLOPT_URL, server_url_string); -- cgit v1.1-32-gdbae