diff options
author | Jelmer Vernooij <jelmer@jelmer.uk> | 2016-05-15 17:12:24 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@jelmer.uk> | 2016-05-15 17:16:38 +0000 |
commit | 2e78f75dc5e33fe6d804e71d999f9cab933afd91 (patch) | |
tree | 676f1c89b8a9cc1cd911a2aca3f154d84bbfca76 /irc_send.c | |
parent | 4fe91a16d4808ebf47ea8be6f4206139c91d3347 (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_send.c')
-rw-r--r-- | irc_send.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 " |