From f6e8245458cb0d32609b64c37e1d0e3ab7d8b741 Mon Sep 17 00:00:00 2001
From: Lars-Dominik Braun <PromyLOPh@gmail.com>
Date: Thu, 19 Jun 2008 17:10:02 +0200
Subject: Showing real face now.

User agent is now PACKAGE_STRING
---
 libpiano/src/const.h | 2 --
 libpiano/src/main.c  | 4 ++--
 2 files changed, 2 insertions(+), 4 deletions(-)

(limited to 'libpiano/src')

diff --git a/libpiano/src/const.h b/libpiano/src/const.h
index dfaca1f..d9dfcf8 100644
--- a/libpiano/src/const.h
+++ b/libpiano/src/const.h
@@ -25,8 +25,6 @@ THE SOFTWARE.
 
 /* constants */
 
-
-#define PIANO_USERAGENT "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9pre) Gecko/2008051115 Firefox/3.0pre"
 #define PIANO_RPC_URL "http://www.pandora.com/radio/xmlrpc/v19?"
 #define PIANO_SECURE_RPC_URL "https://www.pandora.com/radio/xmlrpc/v19?"
 #define PIANO_URL_BUFFER_SIZE 1024
diff --git a/libpiano/src/main.c b/libpiano/src/main.c
index 0659283..14ff4c6 100644
--- a/libpiano/src/main.c
+++ b/libpiano/src/main.c
@@ -31,6 +31,7 @@ THE SOFTWARE.
 #include "http.h"
 #include "xml.h"
 #include "crypt.h"
+#include "config.h"
 
 /*	more "secure" free version; only use this function, not original free ()
  *	in this library
@@ -60,8 +61,7 @@ void PianoInit (PianoHandle_t *ph) {
 	ph->curlHandle = curl_easy_init ();
 	/* FIXME: 64-bit may make this hack useless */
 	snprintf (ph->routeId, sizeof (ph->routeId), "%07liP", time (NULL)>>8);
-	/* at the moment we don't need publicity */
-	curl_easy_setopt (ph->curlHandle, CURLOPT_USERAGENT, PIANO_USERAGENT);
+	curl_easy_setopt (ph->curlHandle, CURLOPT_USERAGENT, PACKAGE_STRING);
 }
 
 /*	free complete search result
-- 
cgit v1.2.3