diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-18 19:05:28 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-18 19:05:28 +0200 |
commit | 1b5ab3608488e0cbbc75933a59af1fa7e2ff60b0 (patch) | |
tree | 174c8e8d96ba52dc340b13c449521eca376cc4c3 | |
parent | 41e520279f8633d11f79623574b40af7f8949403 (diff) |
User-Agent: header.
-rw-r--r-- | protocols/http_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/http_client.c b/protocols/http_client.c index ead6eb09..5db31782 100644 --- a/protocols/http_client.c +++ b/protocols/http_client.c @@ -90,7 +90,7 @@ void *http_dorequest_url( char *url_string, http_input_function func, gpointer d request = g_strdup_printf( "GET %s HTTP/1.0\r\n" "Host: %s\r\n" - "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" + "User-Agent: BitlBee " BITLBEE_VERSION " " ARCH "/" CPU "\r\n" "\r\n", url->file, url->host ); ret = http_dorequest( url->host, url->port, |