diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-01 12:45:38 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-01 12:45:50 -0500 |
| commit | 4c28ddf7f0d33451b88e6061308a620f6701f145 (patch) | |
| tree | b4ceba69dc4a522f98411da9429f7c500888bb42 /src/irc.h | |
| parent | d42ffd3ef4ab8d60af301046cda023f05dbbdab2 (diff) | |
| download | fujinet-chat-4c28ddf7f0d33451b88e6061308a620f6701f145.tar.gz | |
fix compile, rename cryptic bw to rxbuflen.
Diffstat (limited to 'src/irc.h')
| -rw-r--r-- | src/irc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |
