2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00
This commit is contained in:
Francis Dupont 2009-01-17 10:26:17 +00:00
parent a9435a8871
commit 86e018c2bc

View File

@ -29,7 +29,7 @@
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: dnssec-signzone.c,v 1.211 2009/01/06 23:47:56 tbox Exp $ */ /* $Id: dnssec-signzone.c,v 1.212 2009/01/17 10:26:17 fdupont Exp $ */
/*! \file */ /*! \file */
@ -2376,7 +2376,7 @@ usage(void) {
fprintf(stderr, "\t-k key_signing_key\n"); fprintf(stderr, "\t-k key_signing_key\n");
fprintf(stderr, "\t-l lookasidezone\n"); fprintf(stderr, "\t-l lookasidezone\n");
fprintf(stderr, "\t-3 salt (NSEC3 salt)\n"); fprintf(stderr, "\t-3 salt (NSEC3 salt)\n");
fprintf(stderr, "\t-H interations (NSEC3 interations)\n"); fprintf(stderr, "\t-H iterations (NSEC3 iterations)\n");
fprintf(stderr, "\t-A (NSEC3 optout)\n"); fprintf(stderr, "\t-A (NSEC3 optout)\n");
fprintf(stderr, "\t-z:\t"); fprintf(stderr, "\t-z:\t");
fprintf(stderr, "ignore KSK flag in DNSKEYs"); fprintf(stderr, "ignore KSK flag in DNSKEYs");
@ -2451,7 +2451,7 @@ main(int argc, char *argv[]) {
#define CMDLINE_FLAGS "3:aAc:d:e:f:ghH:i:I:j:k:l:m:n:N:o:O:pr:s:StUv:z" #define CMDLINE_FLAGS "3:aAc:d:e:f:ghH:i:I:j:k:l:m:n:N:o:O:pr:s:StUv:z"
/* /*
* Process memory debugging arguement first. * Process memory debugging argument first.
*/ */
while ((ch = isc_commandline_parse(argc, argv, CMDLINE_FLAGS)) != -1) { while ((ch = isc_commandline_parse(argc, argv, CMDLINE_FLAGS)) != -1) {
switch (ch) { switch (ch) {
@ -2866,7 +2866,7 @@ main(int argc, char *argv[]) {
result = dns_nsec3_maxiterations(gdb, NULL, mctx, &max); result = dns_nsec3_maxiterations(gdb, NULL, mctx, &max);
check_result(result, "dns_nsec3_maxiterations()"); check_result(result, "dns_nsec3_maxiterations()");
if (iterations > max) if (iterations > max)
fatal("NSEC3 interations too big for weakest DNSKEY " fatal("NSEC3 iterations too big for weakest DNSKEY "
"strength. Maximum iterations allowed %u.", max); "strength. Maximum iterations allowed %u.", max);
} }