Don't refer to keys as "TSIG keys", since they might be used for rndc only,

and this could be confusing.
This commit is contained in:
Brian Wellington
2001-07-26 20:54:35 +00:00
parent ee3ab6063d
commit 26a5f97dd8
2 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: tsigconf.c,v 1.18 2001/06/10 02:37:08 bwelling Exp $ */
/* $Id: tsigconf.c,v 1.19 2001/07/26 20:54:34 bwelling Exp $ */
#include <config.h>
@@ -122,7 +122,7 @@ add_initial_keys(cfg_obj_t *list, dns_tsig_keyring_t *ring, isc_mem_t *mctx) {
failure:
cfg_obj_log(key, ns_g_lctx, ISC_LOG_ERROR,
"configuring TSIG key '%s': %s", keyid,
"configuring key '%s': %s", keyid,
isc_result_totext(ret));
if (secret != NULL)

View File

@@ -16,7 +16,7 @@
*/
/*
* $Id: tsig.c,v 1.110 2001/06/15 02:24:02 bwelling Exp $
* $Id: tsig.c,v 1.111 2001/07/26 20:54:35 bwelling Exp $
*/
#include <config.h>
@@ -211,8 +211,8 @@ dns_tsigkey_createfromkey(dns_name_t *name, dns_name_t *algorithm,
dns_name_format(name, namestr, sizeof(namestr));
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DNSSEC,
DNS_LOGMODULE_TSIG, ISC_LOG_INFO,
"the TSIG key for '%s' is too short to "
"be secure", namestr);
"the key '%s' is too short to be secure",
namestr);
}
if (key != NULL)
*key = tkey;