]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix for posix shell syntax for trap in run_msg.sh test script.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 16 Apr 2020 11:17:33 +0000 (13:17 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 16 Apr 2020 11:17:33 +0000 (13:17 +0200)
doc/Changelog
testcode/run_vm.sh

index 8f6a5758e14a780b74f8f8e5d7c6c8964231e1f6..56a454d970d6a64d43e686f92faf1eac7204809a 100644 (file)
@@ -1,6 +1,7 @@
 16 April 2020: Wouter
        - Fix help return code in unbound-control-setup script.
        - Fix for posix shell syntax for trap in nsd-control-setup.
+       - Fix for posix shell syntax for trap in run_msg.sh test script.
 
 15 April 2020: George
        - Fix #220: auth-zone section in config may lead to segfault.
index d4c2a2e11dda45b0eb9e3febd0ad761573179bea..d14c63742717d2c89cd9560e33b4a797a52cbc57 100644 (file)
@@ -34,7 +34,7 @@ cleanup() {
        if test -f "$t.bak"; then mv "$t.bak" "$t"; fi
        exit 0
 }
-trap cleanup SIGINT
+trap cleanup INT
 
 for t in $RUNLIST
 do