From 91404205ab62fa425081c828e5ee22c2ef779094 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 30 Mar 2026 03:51:50 -0400 Subject: Fix txbuf_append_str('\x01'), it's txbuf_append_chr of course. 4950 bytes free. --- src/irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/irc.c') 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(); } } -- cgit v1.2.3