diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-13 00:12:27 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-13 00:12:27 -0400 |
| commit | e0fac7da028e6a865a3cce0de6f63514e30a271e (patch) | |
| tree | 7fe8297ea29735b700522bac36a4838f2e2e01b2 | |
| parent | 326caa52586a42193747ecc201cd4f8996f7fdf8 (diff) | |
| download | fujinet-chat-e0fac7da028e6a865a3cce0de6f63514e30a271e.tar.gz | |
Another tiny change in cmd.c, save 2 more bytes.
| -rw-r--r-- | src/cmd.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -216,8 +216,10 @@ static void do_server_info(void) { static void send_ctcp(void) { txbuf_set_str3("PRIVMSG ", arg1, " :\x01"); txbuf_append_str(arg2); - if(arg3) - txbuf_append_str2(" ", arg3); + if(arg3) { + txbuf_append_chr(' '); + txbuf_append_str(arg3); + } txbuf_append_str("\x01"); txbuf_send(); } |
