2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-03 08:05:21 +00:00

80 columns

This commit is contained in:
Andreas Gustafsson
2001-02-15 19:02:18 +00:00
parent 1348364377
commit eae31304be

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: cfg_test.c,v 1.3 2001/02/15 18:55:03 gson Exp $ */ /* $Id: cfg_test.c,v 1.4 2001/02/15 19:02:18 gson Exp $ */
#include <config.h> #include <config.h>
@@ -143,9 +143,10 @@ main(int argc, char **argv) {
cfg_obj_t *secret = NULL; cfg_obj_t *secret = NULL;
result = cfg_map_get(key, "secret", &secret); result = cfg_map_get(key, "secret", &secret);
if (result == ISC_R_SUCCESS) { if (result == ISC_R_SUCCESS) {
fprintf(stderr, "(key \"%s\" secret is \"%s\")\n", fprintf(stderr, "(key \"%s\" secret "
cfg_obj_asstring(cfg_map_getname(key)), "is \"%s\")\n",
cfg_obj_asstring(secret)); cfg_obj_asstring(cfg_map_getname(key)),
cfg_obj_asstring(secret));
} }
} }
} }