]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
fix actual issue with pkcs11 variable (a typo in the name), thanks @mind04
authorPeter van Dijk <peter.van.dijk@netherlabs.nl>
Fri, 6 Jun 2014 07:34:38 +0000 (09:34 +0200)
committerPeter van Dijk <peter.van.dijk@netherlabs.nl>
Fri, 6 Jun 2014 07:34:38 +0000 (09:34 +0200)
regression-tests/start-test-stop

index 33a57b9022473c99e57f7f245b7a926b933a7c8c..5b33e470a3b7e7b4d9164f7c9965217199a8374c 100755 (executable)
@@ -73,7 +73,7 @@ securezone ()
                ../pdns/pdnssec --config-dir=. $configname rectify-zone $zone 2>&1
        else
                # check if PKCS#11 should be used
-               if [ "$pcks11" -eq 1 ]; then
+               if [ "$pkcs11" -eq 1 ]; then
                   if [ "$slot" == "" ]; then
                     slot=0
                   else
@@ -261,7 +261,7 @@ fi
 
 if [ "${context: -7}" = "-pkcs11" ]
 then
-        pcks11=1
+        pkcs11=1
         context=${context:0:-7}
 fi