aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2014-04-14 21:10:11 +0200
committerTimo Weingärtner <timo@tiwe.de>2014-04-14 21:39:30 +0200
commitca4c9a28590919b6c0fc49cefdaf967758d5e4a0 (patch)
treeffa602f2e697af04c699741ae01ef043035256b8
parent26b246ac93d59a7f7ba29cff36ad1a3e61306a58 (diff)
downloadssh-agent-filter-ca4c9a28590919b6c0fc49cefdaf967758d5e4a0.tar.gz
do clean exit after receiving signal
-rw-r--r--ssh-agent-filter.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-agent-filter.C b/ssh-agent-filter.C
index d1ccf2c..46d9f94 100644
--- a/ssh-agent-filter.C
+++ b/ssh-agent-filter.C
@@ -446,7 +446,7 @@ void sighandler (int sig) {
break;
default:
remove(path);
- std::abort();
+ std::exit(0);
}
}