From: james Date: Thu, 24 Nov 2005 18:44:57 +0000 (+0000) Subject: --remap-usr1 will now also remap signals thrown during initialization. X-Git-Tag: v2.1_rc1~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5badcf116fcf744a8c99ffcdade6ebb48f56872;p=thirdparty%2Fopenvpn.git --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 --- diff --git a/ChangeLog b/ChangeLog index fa08c8d77..f871d8ead 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,11 @@ Copyright (C) 2002-2005 OpenVPN Solutions LLC $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 diff --git a/init.c b/init.c index 53d185192..b3a999e72 100644 --- a/init.c +++ b/init.c @@ -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 (); + } } /*