aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2024-04-01 12:19:10 +0200
committerKarel Zak <kzak@redhat.com>2024-04-01 12:19:10 +0200
commitb17badc1aedeb6b5bb97a2f23f086bc581f94ad0 (patch)
tree65af4908be8dde2b4b6549bf7c3788b008bf7aea
parent7e357241b413a01c37b0b4d064bc0a47e3259361 (diff)
parenteb7fd49e837bd107c230eb5e7fe2ee64ee56f85e (diff)
downloadutil-linux-b17badc1aedeb6b5bb97a2f23f086bc581f94ad0.tar.gz
Merge branch 'blkid/csum-log' of https://github.com/t-8ch/util-linux
* 'blkid/csum-log' of https://github.com/t-8ch/util-linux: libblkid: use correct logging prefix for checksum mismatch
-rw-r--r--libblkid/src/probe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libblkid/src/probe.c b/libblkid/src/probe.c
index 76905e1970..47df0a93bc 100644
--- a/libblkid/src/probe.c
+++ b/libblkid/src/probe.c
@@ -1976,11 +1976,11 @@ static void blkid_probe_log_csum_mismatch(blkid_probe pr, size_t n, const void *
sprintf(&expected_hex[i], "%02X", ((const unsigned char *) expected)[i / 2]);
}
- ul_debug(
+ DBG(LOWPROBE, ul_debug(
"incorrect checksum for type %s,"
" got %*s, expected %*s",
blkid_probe_get_probername(pr),
- hex_size, csum_hex, hex_size, expected_hex);
+ hex_size, csum_hex, hex_size, expected_hex));
}