diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-06 21:15:44 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-05-06 21:15:44 +0000 |
commit | 56390a11929800712f703577253ff58204924df2 (patch) | |
tree | 993d6f08f2efc92100a77f0197c541f406945a7f | |
parent | 311beb74a89c4464cfd1f13e0e5a6451bd7d28b2 (diff) |
fix harmless typo i introduced with previous string cleaning.
spotted by rohee@
-rw-r--r-- | usr.sbin/bind/bin/dnssec/dnssec-makekeyset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bind/bin/dnssec/dnssec-makekeyset.c b/usr.sbin/bind/bin/dnssec/dnssec-makekeyset.c index fb63523b75e..350436c2f73 100644 --- a/usr.sbin/bind/bin/dnssec/dnssec-makekeyset.c +++ b/usr.sbin/bind/bin/dnssec/dnssec-makekeyset.c @@ -285,7 +285,7 @@ main(int argc, char *argv[]) { } if (output == NULL) { size_t len; - len = strlen("keyset=") + strlen(namestr) + 1; + len = strlen("keyset-") + strlen(namestr) + 1; output = isc_mem_allocate(mctx, len); if (output == NULL) fatal("out of memory"); |