aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-30 03:51:50 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-30 03:52:11 -0400
commit91404205ab62fa425081c828e5ee22c2ef779094 (patch)
tree48cd4e326cf14c4ca45d346c7634f91525079ae4
parentaae59ff1213032ebbc5dc30073f48573ead23696 (diff)
downloadfujinet-chat-91404205ab62fa425081c828e5ee22c2ef779094.tar.gz
Fix txbuf_append_str('\x01'), it's txbuf_append_chr of course. 4950 bytes free.
-rw-r--r--src/irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc.c b/src/irc.c
index 427f7ee..ccdfe20 100644
--- a/src/irc.c
+++ b/src/irc.c
@@ -213,7 +213,7 @@ static void do_ctcp(int is_notice) {
txbuf_append_str(ctcp_type);
txbuf_append_chr(' ');
txbuf_append_str(resp);
- txbuf_append_str('\x01');
+ txbuf_append_chr('\x01');
txbuf_send();
}
}