aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-21 05:20:18 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-21 05:20:18 -0400
commit0cad011f41fe6cabba1dc6f6186c08556db247d4 (patch)
tree52df03a0a38cb8aa0561ef87b114dbd8953a8321 /src/irc.h
parentab2c13a26d23e336fca881e1375235aff4f2dc5e (diff)
downloadfujinet-chat-0cad011f41fe6cabba1dc6f6186c08556db247d4.tar.gz
Stop using FujiNet's CRLF translation (set it to "none"), do our own CRLF processing. Allows the ~ character to be sent properly.
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/irc.h b/src/irc.h
index 783c223..6a4770a 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -1,4 +1,6 @@
-#define FNET_TRANSLATION 3
+/* 0 = no translation (used to use 3, CRLF) */
+#define FNET_TRANSLATION 0
+
#define MAX_IRC_MSG_LEN 512
#define streq(x,y) !strcmp(x,y)