zygo

ncurses gopher client
Log | Files | Refs

commit 9ef7889b19b0c53683ff05861c8874169dd67ce0
parent 41aa54b83041cb01f9c168bc2a8b5ea982f7ac01
Author: hhvn <dev@hhvn.uk>
Date:   Mon, 17 Jan 2022 23:50:31 +0000

zygo.c: print connecting.. message

Diffstat:
Mzygo.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/zygo.c b/zygo.c @@ -486,6 +486,11 @@ go(Elem *e, int mhist) { "%s\t%s", e->selector, search); } + move(LINES - 1, 0); + clrtoeol(); + printw("Connecting to %s:%s", dup->server, dup->port); + refresh(); + if ((ret = net_connect(e)) == -1) { if (dup->tls) { attron(A_BOLD | COLOR_PAIR(PAIR_CMD));