2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

typo in print statement.

This commit is contained in:
James Brister 2000-07-07 14:30:00 +00:00
parent 952e9025b0
commit 524c8ea0dc

View File

@ -15,7 +15,7 @@
* SOFTWARE. * SOFTWARE.
*/ */
/* $Id: confctl.c,v 1.21 2000/07/07 13:56:10 brister Exp $ */ /* $Id: confctl.c,v 1.22 2000/07/07 14:30:00 brister Exp $ */
#include <config.h> #include <config.h>
@ -256,7 +256,7 @@ dns_c_ctrl_print(FILE *fp, int indent, dns_c_ctrl_t *ctl) {
if (ctl->u.inet_v.key != NULL) { if (ctl->u.inet_v.key != NULL) {
fprintf(fp, "\n"); fprintf(fp, "\n");
dns_c_printtabs(fp, indent + 1); dns_c_printtabs(fp, indent + 1);
fprintf(fp, "key { \"%s\" ; }", ctl->u.inet_v.key); fprintf(fp, "keys { \"%s\" ; }", ctl->u.inet_v.key);
} }
fprintf(fp, ";\n"); fprintf(fp, ";\n");
} else { } else {