From c4ea22024f8cfaf69b8d7b97e58f14a9b8fc7c34 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 20 Jun 2022 14:00:38 +0200 Subject: [PATCH] hardlink: use info rather than warning message Fixes: https://github.com/util-linux/util-linux/issues/1710 Signed-off-by: Karel Zak --- misc-utils/hardlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/hardlink.c b/misc-utils/hardlink.c index b7eb342340..12f3cffda7 100644 --- a/misc-utils/hardlink.c +++ b/misc-utils/hardlink.c @@ -1353,7 +1353,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); } -- 2.47.2