From ea124d4f4fdcc3e80fbd693c751a23f0b61feae5 Mon Sep 17 00:00:00 2001 From: Nathan Straz Date: Thu, 26 Jan 2012 14:03:15 -0600 Subject: Fix exit code for connection failures. --- qarsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qarsh.c b/qarsh.c index 29b2cba..ecaf951 100644 --- a/qarsh.c +++ b/qarsh.c @@ -108,7 +108,7 @@ void sig_alrm_handler(int sig) { fprintf(stderr, "Could not connect to remote host\n"); - exit(1); + exit(127); } void -- cgit