From: Heiko Hund Date: Fri, 17 Jan 2014 15:30:38 +0000 (+0100) Subject: convert struct signal_info element X-Git-Tag: v2.4_alpha1~477 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9853b14f0934f6e37600b186831fae3d5bad213f;p=thirdparty%2Fopenvpn.git convert struct signal_info element This one place was forgotten when the elements type was changed from bool to int in the dual stack patch 23d61c56. Signed-off-by: Heiko Hund Acked-by: Arne Schwabe Message-Id: <1389972638-8006-2-git-send-email-heiko.hund@sophos.com> URL: http://article.gmane.org/gmane.network.openvpn.devel/8243 Signed-off-by: Gert Doering --- diff --git a/src/openvpn/win32.c b/src/openvpn/win32.c index f35c96be3..7c89a5a9c 100644 --- a/src/openvpn/win32.c +++ b/src/openvpn/win32.c @@ -517,7 +517,7 @@ win32_signal_get (struct win32_signal *ws) if (ret) { siginfo_static.signal_received = ret; - siginfo_static.hard = true; + siginfo_static.source = SIG_SOURCE_HARD; } } return ret;