]> andersk Git - openssh.git/commitdiff
- djm@cvs.openbsd.org 2007/05/17 20:52:13
authordtucker <dtucker>
Sun, 20 May 2007 05:10:16 +0000 (05:10 +0000)
committerdtucker <dtucker>
Sun, 20 May 2007 05:10:16 +0000 (05:10 +0000)
     [monitor.c]
     pass received SIGINT from monitor to postauth child so it can clean
     up properly. bz#1196, patch from senthilkumar_sen AT hotpop.com;
     ok markus@

ChangeLog
monitor.c

index 15100fb10ad29f035188a484adb05d9228252ca6..e85d44d6b7b6f5624f0ad0e89cb89f00974da2e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      on a socket, such as is the case when ProxyCommand is used.
      Gives hostbased auth an opportunity to work; bz#616, report
      and feedback stuart AT kaloram.com; ok markus@
+   - djm@cvs.openbsd.org 2007/05/17 20:52:13
+     [monitor.c]
+     pass received SIGINT from monitor to postauth child so it can clean
+     up properly. bz#1196, patch from senthilkumar_sen AT hotpop.com;
+     ok markus@
 
 20070509
  - (tim) [configure.ac] Bug #1287: Add missing test for ucred.h.
index 02f2dc869171252b768334390b1e30b71824d66a..08c7ea3cb7d53ec63dbfddc4ed068704b77a90fb 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.c,v 1.90 2007/02/19 10:45:58 dtucker Exp $ */
+/* $OpenBSD: monitor.c,v 1.91 2007/05/17 20:52:13 djm Exp $ */
 /*
  * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  * Copyright 2002 Markus Friedl <markus@openbsd.org>
@@ -409,6 +409,7 @@ monitor_child_postauth(struct monitor *pmonitor)
        monitor_set_child_handler(pmonitor->m_pid);
        signal(SIGHUP, &monitor_child_handler);
        signal(SIGTERM, &monitor_child_handler);
+       signal(SIGINT, &monitor_child_handler);
 
        if (compat20) {
                mon_dispatch = mon_dispatch_postauth20;
This page took 0.608288 seconds and 5 git commands to generate.