From e50d434a353efac7d4947c7deeaf7cfd773ea6e1 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 3 Nov 2016 12:07:27 +0100 Subject: [PATCH] libdm: report logging with errno as changed default When user changes logging with 'dm_log_with_errno_init()' also report this as non default dm logging. --- WHATS_NEW_DM | 1 + libdm/libdm-common.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM index 0b2cd3db6..8cf0e0588 100644 --- a/WHATS_NEW_DM +++ b/WHATS_NEW_DM @@ -1,5 +1,6 @@ Version 1.02.136 - ====================================== + Report as non default dm logging also when logging with errno was changed. Use log_level() macro to consistently decode message log level in dmeventd. Still produce output when dmsetup dependency tree building finds dev missing. Check and report pthread_sigmask() failure in dmeventd. diff --git a/libdm/libdm-common.c b/libdm/libdm-common.c index 7756009b4..5deb555a4 100644 --- a/libdm/libdm-common.c +++ b/libdm/libdm-common.c @@ -174,7 +174,7 @@ void dm_log_init(dm_log_fn fn) int dm_log_is_non_default(void) { - return (dm_log == _default_log) ? 0 : 1; + return (dm_log == _default_log && dm_log_with_errno == _default_log_with_errno) ? 0 : 1; } void dm_log_with_errno_init(dm_log_with_errno_fn fn)