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 /init.c | |
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
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 (); + } } /* |