Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/external/mpl/bind/dist/lib/isc/unix Pull up following rev...



details:   https://anonhg.NetBSD.org/src/rev/75670c54c96f
branches:  netbsd-9
changeset: 466591:75670c54c96f
user:      martin <martin%NetBSD.org@localhost>
date:      Mon Dec 30 09:43:59 2019 +0000

description:
Pull up following revision(s) (requested by maya in ticket #591):

        external/mpl/bind/dist/lib/isc/unix/app.c: revision 1.5

Only ignore signals if we are bind (not dhcpd).

diffstat:

 external/mpl/bind/dist/lib/isc/unix/app.c |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (25 lines):

diff -r 1f7587341eb7 -r 75670c54c96f external/mpl/bind/dist/lib/isc/unix/app.c
--- a/external/mpl/bind/dist/lib/isc/unix/app.c Sun Dec 29 11:14:46 2019 +0000
+++ b/external/mpl/bind/dist/lib/isc/unix/app.c Mon Dec 30 09:43:59 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: app.c,v 1.4 2019/02/24 20:01:31 christos Exp $ */
+/*     $NetBSD: app.c,v 1.4.4.1 2019/12/30 09:43:59 martin Exp $       */
 
 /*
  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
@@ -196,6 +196,7 @@
                goto cleanup;
 #endif
 
+       if (isc_bind9) {
        /*
         * Block SIGHUP, SIGINT, SIGTERM.
         *
@@ -224,6 +225,7 @@
                result = ISC_R_UNEXPECTED;
                goto cleanup;
        }
+       }
 
        return (ISC_R_SUCCESS);
 



Home | Main Index | Thread Index | Old Index