diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:51:50 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:52:11 -0400 |
| commit | 91404205ab62fa425081c828e5ee22c2ef779094 (patch) | |
| tree | 48cd4e326cf14c4ca45d346c7634f91525079ae4 | |
| parent | aae59ff1213032ebbc5dc30073f48573ead23696 (diff) | |
| download | fujinet-chat-91404205ab62fa425081c828e5ee22c2ef779094.tar.gz | |
Fix txbuf_append_str('\x01'), it's txbuf_append_chr of course. 4950 bytes free.
| -rw-r--r-- | src/irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); } } |
