From fc503a1093f3d971e1bc2082122031a0761bd9ed Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 13 Mar 2026 02:37:33 -0400 Subject: On disconnect or connect fail, sleep between retries, incremental backoff timer. --- src/irc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/irc.c') diff --git a/src/irc.c b/src/irc.c index 95ab584..9f8118f 100644 --- a/src/irc.c +++ b/src/irc.c @@ -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; } -- cgit v1.2.3