+#ifndef BIND_KEYS_H
+#define BIND_KEYS_H 1
#define TRUSTED_KEYS "\
# The bind.keys file is used to override the built-in DNSSEC trust anchors\n\
# which are included as part of BIND 9. The only trust anchors it contains\n\
R1AkUTV74bU=\";\n\
};\n\
"
+#endif /* BIND_KEYS_H */
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
-# $Id: bindkeys.pl,v 1.7 2011/01/04 23:47:13 tbox Exp $
-
use strict;
use warnings;
$lines =~ s/\s+initial-key//g;
my $tkey = '#define TRUSTED_KEYS "\\' . "\n" . $lines . "\"\n";
+print "#ifndef BIND_KEYS_H\n";
+print "#define BIND_KEYS_H 1\n";
print $tkey;
print "\n";
print $mkey;
+print "#endif /* BIND_KEYS_H */\n";