diff options
author | Timo Weingärtner <timo@tiwe.de> | 2014-04-14 21:10:11 +0200 |
---|---|---|
committer | Timo Weingärtner <timo@tiwe.de> | 2014-04-14 21:39:30 +0200 |
commit | ca4c9a28590919b6c0fc49cefdaf967758d5e4a0 (patch) | |
tree | ffa602f2e697af04c699741ae01ef043035256b8 /ssh-agent-filter.C | |
parent | 26b246ac93d59a7f7ba29cff36ad1a3e61306a58 (diff) | |
download | ssh-agent-filter-ca4c9a28590919b6c0fc49cefdaf967758d5e4a0.tar.gz |
do clean exit after receiving signal
Diffstat (limited to 'ssh-agent-filter.C')
-rw-r--r-- | ssh-agent-filter.C | 2 |
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); } } |