diff options
author | Marius Halden <marius.h@lden.org> | 2016-05-20 23:02:45 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-05-20 23:02:45 +0200 |
commit | 36e282c49b0dc22ea31c157cf9f8268d44814e06 (patch) | |
tree | 384d97562fb4a66b46566522765891ab4284ef7b /irc_user.c | |
parent | dbb146b273dccad03e1aa5561926b808e104e3f0 (diff) | |
parent | d3b99b6f68a7b030c653c4086de7bbba76a30636 (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'irc_user.c')
-rw-r--r-- | irc_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] ? : ""); |