From 945e54166a89bc008d90a70fcc41e44f14dd8838 Mon Sep 17 00:00:00 2001 From: "Ned T. Crigler" Date: Thu, 1 Jul 2004 23:31:39 +0000 Subject: [PATCH] Add an extra signal call to the win_change function to make sure the SIGWINCH handler isn't reset on certain systems. --- attach.c | 1 + 1 file changed, 1 insertion(+) diff --git a/attach.c b/attach.c index 5fe18a2..bdb94b7 100644 --- a/attach.c +++ b/attach.c @@ -84,6 +84,7 @@ die(int sig) static RETSIGTYPE win_change() { + signal(SIGWINCH, win_change); win_changed = 1; }