Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package nsd for openSUSE:Factory checked in 
at 2021-12-10 21:52:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nsd (Old)
 and      /work/SRC/openSUSE:Factory/.nsd.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nsd"

Fri Dec 10 21:52:26 2021 rev:26 rq:938257 version:4.3.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/nsd/nsd.changes  2021-11-15 00:06:58.759633035 
+0100
+++ /work/SRC/openSUSE:Factory/.nsd.new.2520/nsd.changes        2021-12-10 
21:52:40.526900269 +0100
@@ -1,0 +2,10 @@
+Thu Dec  9 18:23:11 UTC 2021 - Michael Str??der <mich...@stroeder.com>
+
+- New upstream release 4.3.9
+  * Fix #198: nsd-control reconfig core dump.
+  * Fix to remove git tracking and ci information from release tarballs.
+  * Fix unit tests for new answer-cookie default.
+  * Fix socket_partitioning unit test for FreeBSD.
+  * Fix SVCB test to work around older dig with drill.
+
+-------------------------------------------------------------------

Old:
----
  nsd-4.3.8.tar.gz
  nsd-4.3.8.tar.gz.asc

New:
----
  nsd-4.3.9.tar.gz
  nsd-4.3.9.tar.gz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nsd.spec ++++++
--- /var/tmp/diff_new_pack.RJN2Wu/_old  2021-12-10 21:52:41.106900526 +0100
+++ /var/tmp/diff_new_pack.RJN2Wu/_new  2021-12-10 21:52:41.110900528 +0100
@@ -23,7 +23,7 @@
 %define zonesdir   %{configdir}/zones
 %define pidfile    %{_rundir}/nsd/nsd.pid
 Name:           nsd
-Version:        4.3.8
+Version:        4.3.9
 Release:        0
 #
 Summary:        An authoritative-only domain name server

++++++ nsd-4.3.8.tar.gz -> nsd-4.3.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/.cirrus.yml new/nsd-4.3.9/.cirrus.yml
--- old/nsd-4.3.8/.cirrus.yml   2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/.cirrus.yml   1970-01-01 01:00:00.000000000 +0100
@@ -1,126 +0,0 @@
-# Cirrus CI instructions for building NSD
-#
-# These build instructions are based on the existing instructions and
-# suggestions made by Jeffrey Walton (noloader) about using the Undefined
-# Behavior sanitizer (UBSan) and the Address sanitizer (ASan).
-#
-# For now builds are limited to Linux, FreeBSD and macOS builds on AMD64, more
-# may be added in the future.
-
-ubuntu_2004_gcc11: &ubuntu_2004_gcc11
-  container:
-    image: ubuntu:focal
-  env:
-    UBUNTU_CODENAME: focal
-    COV_COMPTYPE: gcc
-    COV_PLATFORM: linux64
-    CC: gcc-11
-  bootstrap_script:
-    - apt-get update
-    - apt-get install -y gnupg2 ca-certificates wget curl 
software-properties-common
-    - add-apt-repository -y ppa:ubuntu-toolchain-r/test
-    - apt-get update
-  install_script:
-    - apt-get install -y autoconf automake make gcc-11 clang libc-dev 
libevent-dev libssl-dev flex bison
-
-ubuntu_2104_clang12: &ubuntu_2104_clang12
-  container:
-    image: ubuntu:hirsute
-  env:
-    UBUNTU_CODENAME: hirsute
-    CC: clang-12
-    CLANG_VERSION: 12
-  bootstrap_script:
-    - apt-get update
-    - apt-get install -y gnupg2 ca-certificates wget curl 
software-properties-common
-    - apt-get update
-  install_script:
-    - apt-get install -y autoconf automake make clang-${CLANG_VERSION} 
libc-dev libevent-dev libssl-dev flex bison
-    - update-alternatives --install /usr/bin/clang clang 
/usr/bin/clang-${CLANG_VERSION} 10
-
-freebsd_12_2: &freebsd_12_2
-  freebsd_instance:
-    image_family: freebsd-12-2
-  env:
-    CC: clang
-  install_script:
-    - pkg update -f
-    - pkg install -y bash gmake autoconf automake libevent
-
-macos_1015_xcode11: &macos_1015_xcode11
-  osx_instance:
-    image: catalina-xcode-11.3.1
-  env:
-    CC: clang
-    COV_COMPTYPE: clang
-    COV_COMPTYPE: macOSX
-  install_script:
-    - brew install bash autoconf automake libtool libevent openssl flex bison
-
-install_coverity: &install_coverity
-  env:
-    COV_ARC: "$CIRRUS_WORKING_DIR/cov-analysis-$COV_PLATFORM.tgz"
-    COV_DIR: "$CIRRUS_WORKING_DIR/coverity-scan-analysis"
-    PATH: "$PATH:$CIRRUS_WORKING_DIR/cov-analysis/bin"
-  install_coverity_script:
-    - test ! -d "${COV_DIR}" &&
-      mkdir -p "${COV_DIR}" &&
-      curl -s -S -F project="${CIRRUS_REPO_OWNER}/${CIRRUS_REPO_NAME}"
-                 -F token="${COVERITY_SCAN_TOKEN}"
-                 -o "${COV_ARC}"
-                 "https://scan.coverity.com/download/cxx/${COV_PLATFORM}"; &&
-      tar -xzf "${COV_ARC}" -C "${COV_DIR}"
-    - ln -s $(find "${COV_DIR}" -type d -name "cov-analysis*") cov-analysis
-
-submit_to_coverity_scan: &submit_to_coverity_scan
-  submit_to_coverity_scan_script:
-    - tar -czf analysis-results.tgz cov-int
-    - curl -s -S -F project="${CIRRUS_REPO_OWNER}/${CIRRUS_REPO_NAME}"
-                 -F token="${COVERITY_SCAN_TOKEN}"
-                 -F file=@analysis-results.tgz
-                 -F version="$(git rev-parse --short HEAD)"
-                 -F description="Cirrus CI build"
-                 -F email="${COVERITY_EMAIL:=s...@nlnetlabs.nl}"
-                 "https://scan.coverity.com/builds";
-
-env:
-  COVERITY_EMAIL: 
ENCRYPTED[effa3340c97e8cf92c0dbb564187d35b6829580cc2577b176d6c6fc9b775745f7130c56f5bd9ab2472f4ae818b6f3791]
-  COVERITY_SCAN_TOKEN: 
ENCRYPTED[8f67f850ca3d464ea87fa8dee17bbb0cfb2a991b6f401fd593fe0744eece838e325af438d62ee2d46c4e18a2bd5c873f]
-
-task:
-  only_if: $CIRRUS_CRON != ''
-  name: "Build on Ubuntu 20.04 LTS with GCC 11 (Coverity Scan)"
-  <<: *ubuntu_2004_gcc11
-  <<: *install_coverity
-  build_script:
-    - autoconf && autoheader
-    - ./configure --enable-checking --disable-flto
-    - cov-configure --comptype ${COV_COMPTYPE} --compiler ${CC} --template
-    - cov-build --dir cov-int make
-  <<: *submit_to_coverity_scan
-
-task:
-  matrix:
-    - name: "Build and test on Ubuntu 20.04 LTS with GCC 11"
-      <<: *ubuntu_2004_gcc11
-    - name: "Build and test on Ubuntu 21.04 LTS with Clang 12 
(ASan+UBSan+LSan)"
-      <<: *ubuntu_2104_clang12
-      env:
-        CFLAGS: "-g2 -O0 -fsanitize=address,undefined,leak 
-fno-sanitize-recover=all"
-    - name: "Build and test on FreeBSD 12.2 (ASan+UBSan)"
-      <<: *freebsd_12_2
-      env:
-        CFLAGS: "-g2 -O0 -fsanitize=address,undefined 
-fno-sanitize-recover=all"
-    - name: "Build and test on macOS 10.15 with Xcode 11.3.1 (ASan+UBSan)"
-      <<: *macos_1015_xcode11
-      env:
-        CFLAGS: "-g2 -O0 -fsanitize=address,undefined 
-fno-sanitize-recover=all"
-
-  build_script:
-    - autoconf && autoheader
-    - ./configure --enable-checking --disable-flto --with-ssl=yes 
--with-libevent=yes
-    - make -j 2
-    - make cutest
-    - ./cutest
-    - (cd tpkg/clang-analysis.tdir && bash clang-analysis.test)
-    - (cd tpkg && ./mini_tdir.sh -a ../.. exe checkconf.tdir)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/.github/FUNDING.yml 
new/nsd-4.3.9/.github/FUNDING.yml
--- old/nsd-4.3.8/.github/FUNDING.yml   2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/.github/FUNDING.yml   1970-01-01 01:00:00.000000000 +0100
@@ -1,2 +0,0 @@
-github: [NLnetLabs]
-custom: ['https://nlnetlabs.nl/funding/']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/.gitignore new/nsd-4.3.9/.gitignore
--- old/nsd-4.3.8/.gitignore    2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/.gitignore    1970-01-01 01:00:00.000000000 +0100
@@ -1,48 +0,0 @@
-*.o
-/.libs/
-/Makefile
-/autom4te.cache/
-/aclocal.m4
-/config.h
-/config.h.in
-/config.h.in~
-/config.log
-/config.status
-/config.guess
-/config.sub
-/configure
-/configlexer.c
-/configparser.c
-/configparser.h
-/zlexer.c
-/zparser.c
-/zparser.h
-/nsd
-/nsd-checkconf
-/nsd-checkzone
-/nsd-control
-/nsd-control-setup.sh
-/nsd-checkconf.8
-/nsd-checkzone.8
-/nsd-control.8
-/nsd.8
-/nsd.conf.5
-/nsd.conf.sample
-/nsd-mem
-/cutest
-/popen3_echo
-/udb-inspect
-/xfr-inspect
-/dnstap/dnstap.pb-c.c
-/dnstap/dnstap.pb-c.h
-/dnstap/dnstap_config.h
-/tpkg/result.*
-/tpkg/.done-*
-/tpkg/long/result.*
-/tpkg/long/.done-*
-/tpkg/long/*.log
-
-# Eclipse IDE Project Settings
-.cproject
-.project
-.settings/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/README.md new/nsd-4.3.9/README.md
--- old/nsd-4.3.8/README.md     2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/README.md     2021-12-09 10:07:22.000000000 +0100
@@ -13,7 +13,7 @@
 or post a message on the
 [NSD mailing list](https://lists.nlnetlabs.nl/mailman/listinfo/nsd-users).
 You can learn more about NSD by reading our
-[documentation](https://nlnetlabs.nl/documentation/nsd/).
+[documentation](https://nsd.docs.nlnetlabs.nl/).
 
 ## Compiling
 
@@ -41,7 +41,7 @@
 
 The configuration options for NSD are described in the man pages, which are
 installed (use `man nsd.conf`) and are available on the NSD
-[documentation page](https://nlnetlabs.nl/documentation/nsd/).
+[documentation page](https://nsd.docs.nlnetlabs.nl/).
 
 An example configuration file is located in
 
[nsd.conf.sample](https://github.com/NLnetLabs/nsd/blob/master/nsd.conf.sample.in).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/configparser.c new/nsd-4.3.9/configparser.c
--- old/nsd-4.3.8/configparser.c        2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/configparser.c        2021-12-09 10:07:25.000000000 +0100
@@ -2429,9 +2429,9 @@
       /* Users may specify "0 1", "0" "1", 0 1 or a combination thereof. */
       for(str = (yyvsp[0].str); (tok = strtok_r(str, " \t", &ptr)); str = 
NULL) {
         struct cpu_option *opt =
-          region_alloc(cfg_parser->opt->region, sizeof(*opt));
+          region_alloc_zero(cfg_parser->opt->region, sizeof(*opt));
         cpu = 0;
-        if(!parse_number(tok, &cpu) || opt->cpu < 0) {
+        if(!parse_number(tok, &cpu) || cpu < 0) {
           yyerror("expected a positive number");
           YYABORT;
         }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/configparser.y new/nsd-4.3.9/configparser.y
--- old/nsd-4.3.8/configparser.y        2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/configparser.y        2021-12-09 10:07:22.000000000 +0100
@@ -542,9 +542,9 @@
       /* Users may specify "0 1", "0" "1", 0 1 or a combination thereof. */
       for(str = $2; (tok = strtok_r(str, " \t", &ptr)); str = NULL) {
         struct cpu_option *opt =
-          region_alloc(cfg_parser->opt->region, sizeof(*opt));
+          region_alloc_zero(cfg_parser->opt->region, sizeof(*opt));
         cpu = 0;
-        if(!parse_number(tok, &cpu) || opt->cpu < 0) {
+        if(!parse_number(tok, &cpu) || cpu < 0) {
           yyerror("expected a positive number");
           YYABORT;
         }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/configure new/nsd-4.3.9/configure
--- old/nsd-4.3.8/configure     2021-10-12 08:52:59.000000000 +0200
+++ new/nsd-4.3.9/configure     2021-12-09 10:07:25.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for NSD 4.3.8.
+# Generated by GNU Autoconf 2.69 for NSD 4.3.9.
 #
 # Report bugs to <nsd-b...@nlnetlabs.nl>.
 #
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='NSD'
 PACKAGE_TARNAME='nsd'
-PACKAGE_VERSION='4.3.8'
-PACKAGE_STRING='NSD 4.3.8'
+PACKAGE_VERSION='4.3.9'
+PACKAGE_STRING='NSD 4.3.9'
 PACKAGE_BUGREPORT='nsd-b...@nlnetlabs.nl'
 PACKAGE_URL=''
 
@@ -1317,7 +1317,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures NSD 4.3.8 to adapt to many kinds of systems.
+\`configure' configures NSD 4.3.9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1378,7 +1378,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of NSD 4.3.8:";;
+     short | recursive ) echo "Configuration of NSD 4.3.9:";;
    esac
   cat <<\_ACEOF
 
@@ -1551,7 +1551,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-NSD configure 4.3.8
+NSD configure 4.3.9
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2260,7 +2260,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by NSD $as_me 4.3.8, which was
+It was created by NSD $as_me 4.3.9, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -11088,7 +11088,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by NSD $as_me 4.3.8, which was
+This file was extended by NSD $as_me 4.3.9, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -11150,7 +11150,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-NSD config.status 4.3.8
+NSD config.status 4.3.9
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/configure.ac new/nsd-4.3.9/configure.ac
--- old/nsd-4.3.8/configure.ac  2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/configure.ac  2021-12-09 10:07:22.000000000 +0100
@@ -5,7 +5,7 @@
 sinclude(acx_nlnetlabs.m4)
 sinclude(dnstap/dnstap.m4)
 
-AC_INIT([NSD],[4.3.8],[nsd-b...@nlnetlabs.nl])
+AC_INIT([NSD],[4.3.9],[nsd-b...@nlnetlabs.nl])
 AC_CONFIG_HEADERS([config.h])
 
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/doc/ChangeLog new/nsd-4.3.9/doc/ChangeLog
--- old/nsd-4.3.8/doc/ChangeLog 2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/doc/ChangeLog 2021-12-09 10:07:22.000000000 +0100
@@ -1,3 +1,21 @@
+2 December 2021: Wouter
+       - Fix socket_partitioning unit test for FreeBSD.
+       - Fix SVCB test to work around older dig with drill.
+
+1 December 2021: Wouter
+       - Set up for branch for 4.3.9 release.
+       - Fix unit tests for new answer-cookie default.
+
+30 November 2021: Wouter
+       - Fix to remove git tracking and ci information from release tarballs.
+
+3 November 2021: Wouter
+       - Fix #198: nsd-control reconfig core dump.
+
+12 October 2021: Wouter
+       - Tag for 4.3.8 release, from 4.3.8rc2. The main branch continues
+         with version 4.3.9 in development.
+
 7 October 2021: Wouter
        - Set default for answer-cookie to no. Because in server deployments
          with mixed server software, a default of yes causes issues.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/doc/README new/nsd-4.3.9/doc/README
--- old/nsd-4.3.8/doc/README    2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/doc/README    2021-12-09 10:07:26.000000000 +0100
@@ -20,7 +20,7 @@
 
 1.0 Introduction
 
-This is NSD Name Server Daemon (NSD) version 4.3.8.
+This is NSD Name Server Daemon (NSD) version 4.3.9.
 
 The NLnet Labs Name Server Daemon (NSD) is an authoritative RFC compliant 
 DNS nameserver. It was first conceived to allow for more genetic 
@@ -56,7 +56,7 @@
 
 1.2 Quick build and install
 
-Step 1: Unpack the source with gtar -xzvf nsd-4.3.8.tar.gz
+Step 1: Unpack the source with gtar -xzvf nsd-4.3.9.tar.gz
 
 Step 2: Create user nsd or any other unprivileged user of your
         choice. In case of later make sure to use
@@ -110,9 +110,9 @@
 Use your favorite combination of tar and gnu zip to unpack the source,
 for example
 
-$ gtar -xzvf nsd-4.3.8.tar.gz
+$ gtar -xzvf nsd-4.3.9.tar.gz
 
-will unpack the source into the ./nsd-4.3.8 directory...
+will unpack the source into the ./nsd-4.3.9 directory...
 
 
 2.2 Configuring NSD
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/doc/RELNOTES new/nsd-4.3.9/doc/RELNOTES
--- old/nsd-4.3.8/doc/RELNOTES  2021-10-12 08:52:56.000000000 +0200
+++ new/nsd-4.3.9/doc/RELNOTES  2021-12-09 10:07:22.000000000 +0100
@@ -1,5 +1,14 @@
 NSD RELEASE NOTES
 
+4.3.9
+================
+BUG FIXES:
+       - Fix #198: nsd-control reconfig core dump.
+       - Fix to remove git tracking and ci information from release tarballs.
+       - Fix unit tests for new answer-cookie default.
+       - Fix socket_partitioning unit test for FreeBSD.
+       - Fix SVCB test to work around older dig with drill.
+
 4.3.8
 ================
 FEATURES:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/nsd-checkconf.8.in 
new/nsd-4.3.9/nsd-checkconf.8.in
--- old/nsd-4.3.8/nsd-checkconf.8.in    2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/nsd-checkconf.8.in    2021-12-09 10:07:26.000000000 +0100
@@ -1,4 +1,4 @@
-.TH "nsd\-checkconf" "8" "Oct 12, 2021" "NLnet Labs" "nsd 4.3.8"
+.TH "nsd\-checkconf" "8" "Dec  9, 2021" "NLnet Labs" "nsd 4.3.9"
 .\" Copyright (c) 2001\-2008, NLnet Labs. All rights reserved.
 .\" See LICENSE for the license.
 .SH "NAME"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/nsd-checkzone.8.in 
new/nsd-4.3.9/nsd-checkzone.8.in
--- old/nsd-4.3.8/nsd-checkzone.8.in    2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/nsd-checkzone.8.in    2021-12-09 10:07:26.000000000 +0100
@@ -1,4 +1,4 @@
-.TH "nsd\-checkzone" "8" "Oct 12, 2021" "NLnet Labs" "nsd 4.3.8"
+.TH "nsd\-checkzone" "8" "Dec  9, 2021" "NLnet Labs" "nsd 4.3.9"
 .\" Copyright (c) 2014, NLnet Labs. All rights reserved.
 .\" See LICENSE for the license.
 .SH "NAME"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/nsd-control.8.in 
new/nsd-4.3.9/nsd-control.8.in
--- old/nsd-4.3.8/nsd-control.8.in      2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/nsd-control.8.in      2021-12-09 10:07:26.000000000 +0100
@@ -1,4 +1,4 @@
-.TH "nsd\-control" "8" "Oct 12, 2021" "NLnet Labs" "nsd 4.3.8"
+.TH "nsd\-control" "8" "Dec  9, 2021" "NLnet Labs" "nsd 4.3.9"
 .\" Copyright (c) 2011, NLnet Labs. All rights reserved.
 .\" See LICENSE for the license.
 .SH "NAME"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/nsd.8.in new/nsd-4.3.9/nsd.8.in
--- old/nsd-4.3.8/nsd.8.in      2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/nsd.8.in      2021-12-09 10:07:26.000000000 +0100
@@ -1,9 +1,9 @@
-.TH "NSD" "8" "Oct 12, 2021" "NLnet Labs" "NSD 4.3.8"
+.TH "NSD" "8" "Dec  9, 2021" "NLnet Labs" "NSD 4.3.9"
 .\" Copyright (c) 2001\-2008, NLnet Labs. All rights reserved.
 .\" See LICENSE for the license.
 .SH "NAME"
 .B nsd
-\- Name Server Daemon (NSD) version 4.3.8.
+\- Name Server Daemon (NSD) version 4.3.9.
 .SH "SYNOPSIS"
 .B nsd
 .RB [ \-4 ] 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nsd-4.3.8/nsd.conf.5.in new/nsd-4.3.9/nsd.conf.5.in
--- old/nsd-4.3.8/nsd.conf.5.in 2021-10-12 08:53:00.000000000 +0200
+++ new/nsd-4.3.9/nsd.conf.5.in 2021-12-09 10:07:26.000000000 +0100
@@ -1,4 +1,4 @@
-.TH "nsd.conf" "5" "Oct 12, 2021" "NLnet Labs" "nsd 4.3.8"
+.TH "nsd.conf" "5" "Dec  9, 2021" "NLnet Labs" "nsd 4.3.9"
 .\" Copyright (c) 2001\-2008, NLnet Labs. All rights reserved.
 .\" See LICENSE for the license.
 .SH "NAME"

Reply via email to