diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-13 02:37:33 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-13 02:37:33 -0400 |
| commit | fc503a1093f3d971e1bc2082122031a0761bd9ed (patch) | |
| tree | 1de455d23a446236f2f50ac1f5090a3c046b1315 /src/irc.c | |
| parent | 8b76e79585aa1ed0a3bc4c1708f2d270aac239fc (diff) | |
| download | fujinet-chat-fc503a1093f3d971e1bc2082122031a0761bd9ed.tar.gz | |
On disconnect or connect fail, sleep between retries, incremental backoff timer.
Diffstat (limited to 'src/irc.c')
| -rw-r--r-- | src/irc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -628,15 +628,15 @@ int irc_read(void) { err = nstatus(conf->url); if(err != 1) { + scr_display(SCR_SERVER); regged = 0; if(err == 136) { scr_print_current("Disconnected"); } else { print_errnum(); } - scr_print_current(", press any key...\n"); + scr_eol_current(); bell(); - cgetc(); return 0; } |
