diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:57:44 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-30 03:57:44 -0400 |
| commit | f917179044f1724ef1d2bcd5d7bdbddfe24844f6 (patch) | |
| tree | 5b53038482e7f23ba02a314e44ea59839a616089 | |
| parent | 91404205ab62fa425081c828e5ee22c2ef779094 (diff) | |
| download | fujinet-chat-f917179044f1724ef1d2bcd5d7bdbddfe24844f6.tar.gz | |
Add RPL_AWAY handling (back down to 4898 bytes, but this is a bugfix).
| -rw-r--r-- | src/irc.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -491,6 +491,12 @@ static void do_numeric(void) { do_forward_chan(); break; + case RPL_AWAY: + scr_print_active(msg_args[1]); + scr_print_active(" is away: "); + scr_print_active(msg_text); + break; + default: if(num >= 400 && num < 600) scr_activate(scr_current); |
