diff options
author | 2003-05-06 21:15:43 +0000 | |
---|---|---|
committer | 2003-05-06 21:15:43 +0000 | |
commit | 0d6570721123599f91d26a46348cf9f01c61d110 (patch) | |
tree | cae3ff546e9928c3f4702f2ba59dc31c2c76fad6 | |
parent | updated prototype for dounmount (diff) | |
download | wireguard-openbsd-0d6570721123599f91d26a46348cf9f01c61d110.tar.xz wireguard-openbsd-0d6570721123599f91d26a46348cf9f01c61d110.zip |
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"); |