diff --git a/bin/named/server.c b/bin/named/server.c index 1af9628ee2..4c92d7d2c1 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.533 2009/06/10 00:27:21 each Exp $ */ +/* $Id: server.c,v 1.534 2009/06/10 23:47:47 tbox Exp $ */ /*! \file */ @@ -3272,7 +3272,7 @@ generate_session_key(const char *filename, const char *keynamestr, /* * Dump the key to the buffer for later use. Should be done before - * we transfer the ownership of key to tsigkey. + * we transfer the ownership of key to tsigkey. */ isc_buffer_init(&key_rawbuffer, &key_rawsecret, sizeof(key_rawsecret)); CHECK(dst_key_tobuffer(key, &key_rawbuffer)); @@ -3306,8 +3306,8 @@ generate_session_key(const char *filename, const char *keynamestr, cleanup: isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, - NS_LOGMODULE_SERVER, ISC_LOG_ERROR, - "failed to generate session key " + NS_LOGMODULE_SERVER, ISC_LOG_ERROR, + "failed to generate session key " "for dynamic DNS: %s", isc_result_totext(result)); if (tsigkey != NULL) dns_tsigkey_detach(&tsigkey); @@ -3367,7 +3367,7 @@ configure_session_key(const cfg_obj_t **maps, ns_server_t *server, cfg_obj_log(obj, ns_g_lctx, ISC_LOG_ERROR, "ddns-keyalg: " "unsupported or unknown algorithm '%s'%s", algstr, - server->ddns_keyfile != NULL ? s : ""); + server->ddns_keyfile != NULL ? s : ""); return (result); } @@ -3404,7 +3404,7 @@ configure_session_key(const cfg_obj_t **maps, ns_server_t *server, if (server->ddns_keyname == NULL) goto cleanup; dns_name_init(server->ddns_keyname, NULL); - CHECK(dns_name_dup(keyname, mctx, server->ddns_keyname)); + CHECK(dns_name_dup(keyname, mctx, server->ddns_keyname)); server->ddns_keyfile = isc_mem_strdup(mctx, keyfile); if (server->ddns_keyfile == NULL) diff --git a/bin/named/zoneconf.c b/bin/named/zoneconf.c index d8f41dc85a..8a2edd4d04 100644 --- a/bin/named/zoneconf.c +++ b/bin/named/zoneconf.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: zoneconf.c,v 1.150 2009/06/10 00:27:21 each Exp $ */ +/* $Id: zoneconf.c,v 1.151 2009/06/10 23:47:47 tbox Exp $ */ /*% */ @@ -336,8 +336,8 @@ configure_zone_ssutable(const cfg_obj_t *zconfig, dns_zone_t *zone, } /* - * If this is a "ddns-autoconf" zone and a DDNS session key exists, - * then use the default policy, equivalent to: + * If this is a "ddns-autoconf" zone and a DDNS session key exists, + * then use the default policy, equivalent to: * update-policy { grant zonesub any; }; */ if (autoddns) { diff --git a/lib/bind9/check.c b/lib/bind9/check.c index e4befa0489..66dd12fc08 100644 --- a/lib/bind9/check.c +++ b/lib/bind9/check.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: check.c,v 1.102 2009/06/10 00:27:22 each Exp $ */ +/* $Id: check.c,v 1.103 2009/06/10 23:47:47 tbox Exp $ */ /*! \file */ @@ -1077,7 +1077,7 @@ check_zoneconf(const cfg_obj_t *zconfig, const cfg_obj_t *voptions, { "notify", MASTERZONE | SLAVEZONE }, { "also-notify", MASTERZONE | SLAVEZONE }, { "dialup", MASTERZONE | SLAVEZONE | STUBZONE }, - { "ddns-autoconf", MASTERZONE }, + { "ddns-autoconf", MASTERZONE }, { "delegation-only", HINTZONE | STUBZONE | DELEGATIONZONE }, { "forward", MASTERZONE | SLAVEZONE | STUBZONE | FORWARDZONE }, { "forwarders", MASTERZONE | SLAVEZONE | STUBZONE | FORWARDZONE }, diff --git a/lib/isccfg/namedconf.c b/lib/isccfg/namedconf.c index 6d4f452c1c..48f7913e36 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: namedconf.c,v 1.97 2009/06/10 00:27:22 each Exp $ */ +/* $Id: namedconf.c,v 1.98 2009/06/10 23:47:47 tbox Exp $ */ /*! \file */ @@ -249,7 +249,7 @@ static cfg_type_t cfg_type_pubkey = { */ static cfg_type_t cfg_type_rrtypelist = { "rrtypelist", cfg_parse_spacelist, cfg_print_spacelist, - cfg_doc_terminal, &cfg_rep_list, &cfg_type_astring + cfg_doc_terminal, &cfg_rep_list, &cfg_type_astring }; static const char *mode_enums[] = { "grant", "deny", NULL }; @@ -266,7 +266,7 @@ parse_matchtype(cfg_parser_t *pctx, const cfg_type_t *type, CHECK(cfg_peektoken(pctx, 0)); if (pctx->token.type == isc_tokentype_string && strcasecmp(TOKEN_STRING(pctx), "zonesub") == 0) { - pctx->flags |= CFG_PCTX_SKIP; + pctx->flags |= CFG_PCTX_SKIP; } return (cfg_parse_enum(pctx, type, ret)); @@ -297,12 +297,12 @@ static const char *matchtype_enums[] = { "tcp-self", "6to4-self", "zonesub", NULL }; static cfg_type_t cfg_type_matchtype = { "matchtype", parse_matchtype, cfg_print_ustring, - cfg_doc_enum, &cfg_rep_string, &matchtype_enums + cfg_doc_enum, &cfg_rep_string, &matchtype_enums }; static cfg_type_t cfg_type_matchname = { "optional_matchname", parse_matchname, cfg_print_ustring, - cfg_doc_tuple, &cfg_rep_tuple, &cfg_type_ustring + cfg_doc_tuple, &cfg_rep_tuple, &cfg_type_ustring }; /*%