fixup! keymgr: when importing BIND keys, inform the user that a different filename is being used

This commit is contained in:
David Vašek 2024-07-12 18:35:24 +02:00
parent ddece74fd0
commit 6489b917bb

View file

@ -363,7 +363,7 @@ static char *gen_keyfilename(const char *orig, const char *wantsuff, const char
static void print_new_name(const char *old, const char *new)
{
if (strcmp(old, new) != 0) {
printf("importing from file: %s\n", new);
INFO2("importing from file: %s\n", new);
}
}