diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-24 18:44:57 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-11-24 18:44:57 +0000 |
commit | d5badcf116fcf744a8c99ffcdade6ebb48f56872 (patch) | |
tree | cb4e4c23cb1d6e9ac8d0701d581218e1b3704d76 | |
parent | Fixed minor man page formatting issue. (diff) | |
download | openvpn-d5badcf116fcf744a8c99ffcdade6ebb48f56872.tar.xz |
--remap-usr1 will now also remap signals thrown during initialization.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@822 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | init.c | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -3,6 +3,11 @@ Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net> $Id$ +2005.11.xx -- Version 2.1-beta8 + +* --remap-usr1 will now also remap signals thrown during + initialization. + 2005.11.12 -- Version 2.1-beta7 * Allow blank passwords to be passed via the management @@ -2383,7 +2383,10 @@ init_instance_handle_signals (struct context *c, const struct env_set *env, cons * a management hold. */ if (IS_SIG (c)) - uninit_management_callback (); + { + remap_signal (c); + uninit_management_callback (); + } } /* |