From f6e8245458cb0d32609b64c37e1d0e3ab7d8b741 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Thu, 19 Jun 2008 17:10:02 +0200 Subject: Showing real face now. User agent is now PACKAGE_STRING --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index 89f25b2..c70a6e7 100644 --- a/src/main.c +++ b/src/main.c @@ -36,6 +36,7 @@ THE SOFTWARE. #include "terminal.h" #include "settings.h" +#include "config.h" struct aacPlayer { /* buffer */ @@ -190,8 +191,7 @@ void *threadPlayUrl (void *data) { curl_easy_setopt (audioFd, CURLOPT_URL, player->url); curl_easy_setopt (audioFd, CURLOPT_WRITEFUNCTION, playCurlCb); curl_easy_setopt (audioFd, CURLOPT_WRITEDATA, player); - /* at the moment we don't need publicity */ - curl_easy_setopt (audioFd, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9pre) Gecko/2008051115 Firefox/3.0pre"); + curl_easy_setopt (audioFd, CURLOPT_USERAGENT, PACKAGE_STRING); curl_easy_perform (audioFd); free (player->buffer); -- cgit v1.2.3