aboutsummaryrefslogtreecommitdiffstats
path: root/lib/http_client.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2016-05-15 17:12:24 +0000
committerJelmer Vernooij <jelmer@jelmer.uk>2016-05-15 17:16:38 +0000
commit2e78f75dc5e33fe6d804e71d999f9cab933afd91 (patch)
tree676f1c89b8a9cc1cd911a2aca3f154d84bbfca76 /lib/http_client.c
parent4fe91a16d4808ebf47ea8be6f4206139c91d3347 (diff)
Remove the ARCH / CPU defines.
These only reflect on what arch/cpu bitlbee was built, not on which it is running. This makes the Debian package unreproducible. See e.g. https://tests.reproducible-builds.org/rb-pkg/testing/i386/bitlbee.html
Diffstat (limited to 'lib/http_client.c')
-rw-r--r--lib/http_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_client.c b/lib/http_client.c
index 2369d018..1836ba20 100644
--- a/lib/http_client.c
+++ b/lib/http_client.c
@@ -94,7 +94,7 @@ struct http_request *http_dorequest_url(char *url_string, http_input_function fu
request = g_strdup_printf("GET %s HTTP/1.0\r\n"
"Host: %s\r\n"
- "User-Agent: BitlBee " BITLBEE_VERSION " " ARCH "/" CPU "\r\n"
+ "User-Agent: BitlBee " BITLBEE_VERSION "\r\n"
"\r\n", url->file, url->host);
ret = http_dorequest(url->host, url->port,