aboutsummaryrefslogtreecommitdiffstats
path: root/irc_user.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 /irc_user.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 'irc_user.c')
-rw-r--r--irc_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_user.c b/irc_user.c
index cded8bf8..72e401d0 100644
--- a/irc_user.c
+++ b/irc_user.c
@@ -250,7 +250,7 @@ static gboolean root_ctcp(irc_user_t *iu, char * const *ctcp)
{
if (g_strcasecmp(ctcp[0], "VERSION") == 0) {
irc_send_msg_f(iu, "NOTICE", iu->irc->user->nick, "\001%s %s\001",
- ctcp[0], PACKAGE " " BITLBEE_VERSION " " ARCH "/" CPU);
+ ctcp[0], PACKAGE " " BITLBEE_VERSION);
} else if (g_strcasecmp(ctcp[0], "PING") == 0) {
irc_send_msg_f(iu, "NOTICE", iu->irc->user->nick, "\001%s %s\001",
ctcp[0], ctcp[1] ? : "");