aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/twitter/twitter_http.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 /protocols/twitter/twitter_http.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 'protocols/twitter/twitter_http.c')
-rw-r--r--protocols/twitter/twitter_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/twitter/twitter_http.c b/protocols/twitter/twitter_http.c
index c06cac39..94826fc6 100644
--- a/protocols/twitter/twitter_http.c
+++ b/protocols/twitter/twitter_http.c
@@ -78,7 +78,7 @@ struct http_request *twitter_http(struct im_connection *ic, char *url_string, ht
// Make the request.
g_string_printf(request, "%s %s%s%s%s HTTP/1.1\r\n"
"Host: %s\r\n"
- "User-Agent: BitlBee " BITLBEE_VERSION " " ARCH "/" CPU "\r\n",
+ "User-Agent: BitlBee " BITLBEE_VERSION "\r\n",
is_post ? "POST" : "GET",
base_url ? base_url->file : td->url_path,
base_url ? "" : url_string,