diff options
Diffstat (limited to 'bin/dnssec/dnssec-revoke.c')
-rw-r--r-- | bin/dnssec/dnssec-revoke.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/dnssec/dnssec-revoke.c b/bin/dnssec/dnssec-revoke.c index 0b9a1f59ea611..6756a38129e00 100644 --- a/bin/dnssec/dnssec-revoke.c +++ b/bin/dnssec/dnssec-revoke.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2012, 2014 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2009-2012, 2014, 2015 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -89,7 +89,7 @@ main(int argc, char **argv) { isc_uint32_t flags; isc_buffer_t buf; isc_boolean_t force = ISC_FALSE; - isc_boolean_t remove = ISC_FALSE; + isc_boolean_t removefile = ISC_FALSE; isc_boolean_t id = ISC_FALSE; if (argc == 1) @@ -123,7 +123,7 @@ main(int argc, char **argv) { } break; case 'r': - remove = ISC_TRUE; + removefile = ISC_TRUE; break; case 'R': id = ISC_TRUE; @@ -247,7 +247,7 @@ main(int argc, char **argv) { * Remove old key file, if told to (and if * it isn't the same as the new file) */ - if (remove && dst_key_alg(key) != DST_ALG_RSAMD5) { + if (removefile && dst_key_alg(key) != DST_ALG_RSAMD5) { isc_buffer_init(&buf, oldname, sizeof(oldname)); dst_key_setflags(key, flags & ~DNS_KEYFLAG_REVOKE); dst_key_buildfilename(key, DST_TYPE_PRIVATE, dir, &buf); |