From: Aki Tuomi Date: Fri, 20 Sep 2013 20:14:23 +0000 (+0300) Subject: Fix zone into cmds[1] in few places X-Git-Tag: rec-3.6.0-rc1~436^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e15dce0c92cb637aab3808df932f6cf773d73f54;p=pdns Fix zone into cmds[1] in few places --- diff --git a/pdns/pdnssec.cc b/pdns/pdnssec.cc index 240229173..8769c2340 100644 --- a/pdns/pdnssec.cc +++ b/pdns/pdnssec.cc @@ -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;