diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 00:05:40 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-28 00:05:40 +0200 |
commit | fe1d958838cce03179870397f372e723881f2c89 (patch) | |
tree | 12a1e7d3d8adb719e08be108e93aa283e38addcf /src/common/ctcp.c | |
parent | d892b3346eace3e8fa5530c9d710c1ce2c9fe34d (diff) |
More polishing for the About dialog
Diffstat (limited to 'src/common/ctcp.c')
-rw-r--r-- | src/common/ctcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/ctcp.c b/src/common/ctcp.c index f950a901..bbe4e1e5 100644 --- a/src/common/ctcp.c +++ b/src/common/ctcp.c @@ -139,10 +139,10 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip, { #ifdef WIN32 snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" [x%d] / %s", - get_cpu_arch (), get_cpu_str ()); + get_cpu_arch (), get_sys_str (1)); #else snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" / %s", - get_cpu_str ()); + get_sys_str (1)); #endif serv->p_nctcp (serv, nick, outbuf); } |