hardlink: use info rather than warning message

Fixes: https://github.com/util-linux/util-linux/issues/1710
Signed-off-by: Karel Zak <kzak@redhat.com>
pull/1724/head
Karel Zak 2022-06-20 14:00:38 +02:00
parent c417ce68e4
commit d2d297bd51
1 changed files with 1 additions and 1 deletions

View File

@ -1366,7 +1366,7 @@ int main(int argc, char *argv[])
rc = ul_fileeq_init(&fileeq, opts.method);
if (rc != 0 && strcmp(opts.method, "memcmp") != 0) {
warnx(_("cannot initialize %s method, use 'memcmp' fallback"), opts.method);
jlog(JLOG_INFO, _("cannot initialize %s method, use 'memcmp' fallback"), opts.method);
opts.method = "memcmp";
rc = ul_fileeq_init(&fileeq, opts.method);
}