From 18940d2cdfe154fa1c2ae040bdfabc7f2fded54e Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Mon, 14 Aug 2000 20:11:29 +0000 Subject: [PATCH] The keyset filename was missing the trailing dot. --- bin/dnssec/dnssec-makekeyset.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/dnssec/dnssec-makekeyset.c b/bin/dnssec/dnssec-makekeyset.c index b5b29d61aa..8c6f81c3cb 100644 --- a/bin/dnssec/dnssec-makekeyset.c +++ b/bin/dnssec/dnssec-makekeyset.c @@ -17,7 +17,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dnssec-makekeyset.c,v 1.33 2000/08/14 04:43:13 bwelling Exp $ */ +/* $Id: dnssec-makekeyset.c,v 1.34 2000/08/14 20:11:29 bwelling Exp $ */ #include @@ -278,11 +278,12 @@ main(int argc, char *argv[]) { if (output == NULL) { output = isc_mem_allocate(mctx, strlen("keyset-") + - strlen(namestr) + 1); + strlen(namestr) + 1 + 1); if (output == NULL) fatal("out of memory"); strcpy(output, "keyset-"); strcat(output, namestr); + strcat(output, "."); } if (domain == NULL) { dns_fixedname_init(&fdomain);