From 2e78f75dc5e33fe6d804e71d999f9cab933afd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 15 May 2016 17:12:24 +0000 Subject: 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 --- irc_send.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'irc_send.c') diff --git a/irc_send.c b/irc_send.c index adf8211e..70e4e82a 100644 --- a/irc_send.c +++ b/irc_send.c @@ -40,8 +40,8 @@ void irc_send_num(irc_t *irc, int code, char *format, ...) void irc_send_login(irc_t *irc) { irc_send_num(irc, 1, ":Welcome to the %s gateway, %s", PACKAGE, irc->user->nick); - irc_send_num(irc, 2, ":Host %s is running %s %s %s/%s.", irc->root->host, - PACKAGE, BITLBEE_VERSION, ARCH, CPU); + irc_send_num(irc, 2, ":Host %s is running %s %s.", irc->root->host, + PACKAGE, BITLBEE_VERSION); irc_send_num(irc, 3, ":%s", IRCD_INFO); irc_send_num(irc, 4, "%s %s %s %s", irc->root->host, BITLBEE_VERSION, UMODES UMODES_PRIV, CMODES); irc_send_num(irc, 5, "PREFIX=(ohv)@%%+ CHANTYPES=%s CHANMODES=,,,%s NICKLEN=%d CHANNELLEN=%d " -- cgit v1.2.3