aboutsummaryrefslogtreecommitdiff
path: root/src/irc.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-01 12:45:38 -0500
committerB. Watson <urchlay@slackware.uk>2026-03-01 12:45:50 -0500
commit4c28ddf7f0d33451b88e6061308a620f6701f145 (patch)
treeb4ceba69dc4a522f98411da9429f7c500888bb42 /src/irc.h
parentd42ffd3ef4ab8d60af301046cda023f05dbbdab2 (diff)
downloadfujinet-chat-4c28ddf7f0d33451b88e6061308a620f6701f145.tar.gz
fix compile, rename cryptic bw to rxbuflen.
Diffstat (limited to 'src/irc.h')
-rw-r--r--src/irc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc.h b/src/irc.h
index 2c0680f..8a230cd 100644
--- a/src/irc.h
+++ b/src/irc.h
@@ -8,13 +8,13 @@
extern char url[256];
extern char usernick[32];
extern char channel[32];
-extern unsigned char rx_buf[MAX_IRC_MSG_LEN];
-extern unsigned short bw;
+extern char *rx_buf;
+extern unsigned short rxbuflen;
extern unsigned char err;
extern unsigned char trip;
extern unsigned int txbuflen;
-extern char tx_buf[MAX_IRC_MSG_LEN];
+extern char *tx_buf;
/* clears the transmit buffer. */
void txbuf_init(void);