]> granicus.if.org Git - pdns/commitdiff
Fix zone into cmds[1] in few places
authorAki Tuomi <cmouse@cmouse.fi>
Fri, 20 Sep 2013 20:14:23 +0000 (23:14 +0300)
committerAki Tuomi <cmouse@cmouse.fi>
Fri, 20 Sep 2013 20:14:23 +0000 (23:14 +0300)
pdns/pdnssec.cc

index 240229173dc1fba47603eda18cb7108b00abcb0a..8769c2340021487a945de28d32a00cc952394850 100644 (file)
@@ -1289,7 +1289,7 @@ try
       return 0; 
     }
     if (! dk.setPresigned(cmds[1])) {
-      cerr << "Could not set presigned on for " << zone << endl;
+      cerr << "Could not set presigned on for " << cmds[1] << endl;
       return 1;
     }
     return 0;
@@ -1300,7 +1300,7 @@ try
       return 0;  
     }
     if (! dk.unsetPresigned(cmds[1])) {
-      cerr << "Could not unset presigned on for " << zone << endl;
+      cerr << "Could not unset presigned on for " << cmds[1] << endl;
       return 1;
     }
     return 0;
@@ -1330,7 +1330,7 @@ try
       return 0;
     }
     if ( ! dk.unsetNSEC3PARAM(cmds[1])) {
-      cerr<<"Cannot unset NSEC3 param for " << zone << endl;
+      cerr<<"Cannot unset NSEC3 param for " << cmds[1] << endl;
       return 1;
     }
     return 0;