mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 12:12:39 +01:00
Remove arch from CTCP VERSION on win32
Also probably not useful information.
This commit is contained in:
parent
779d373e1d
commit
fbee94cb81
@ -91,7 +91,6 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip,
|
||||
char *po;
|
||||
session *chansess;
|
||||
server *serv = sess->server;
|
||||
char outbuf[1024];
|
||||
int ctcp_offset = 2;
|
||||
|
||||
if (serv->have_idmsg && (word[4][1] == '+' || word[4][1] == '-') )
|
||||
@ -138,13 +137,7 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip,
|
||||
|
||||
if (!g_ascii_strcasecmp (msg, "VERSION") && !prefs.hex_irc_hide_version)
|
||||
{
|
||||
#ifdef WIN32
|
||||
g_snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" [x%d]",
|
||||
get_cpu_arch ());
|
||||
#else
|
||||
g_snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION);
|
||||
#endif
|
||||
serv->p_nctcp (serv, nick, outbuf);
|
||||
serv->p_nctcp (serv, nick, "VERSION HexChat "PACKAGE_VERSION);
|
||||
}
|
||||
|
||||
if (word[4][1] == '\0')
|
||||
|
Loading…
Reference in New Issue
Block a user