1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

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.
This commit is contained in:
Zdenek Kabelac 2016-11-03 12:07:27 +01:00
parent 6af26273cb
commit e50d434a35
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -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)