diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2016-01-11 12:50:04 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2016-02-23 12:26:22 +0100 |
commit | d833f316243f4ccd52b9b53dbd6e91c784825479 (patch) | |
tree | 986d2a8d77b034373cd9555280e179ea69cf9971 /src/providers/ipa/ipa_access.c | |
parent | c426a8985a009e4506bef8dac76af4fa6fc2035c (diff) | |
download | sssd-d833f316243f4ccd52b9b53dbd6e91c784825479.tar.gz sssd-d833f316243f4ccd52b9b53dbd6e91c784825479.tar.xz sssd-d833f316243f4ccd52b9b53dbd6e91c784825479.zip |
IPA: log real hbac function
The string "hbac" wsa logged previously. Real hbac function
will be logged with this patch.
Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/providers/ipa/ipa_access.c')
-rw-r--r-- | src/providers/ipa/ipa_access.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_access.c b/src/providers/ipa/ipa_access.c index ae4c5a9f1..ad12f21fc 100644 --- a/src/providers/ipa/ipa_access.c +++ b/src/providers/ipa/ipa_access.c @@ -37,6 +37,7 @@ /* External logging function for HBAC. */ void hbac_debug_messages(const char *file, int line, + const char *function, enum hbac_debug_level level, const char *fmt, ...) { @@ -67,7 +68,7 @@ void hbac_debug_messages(const char *file, int line, va_list ap; va_start(ap, fmt); - sss_vdebug_fn(file, line, "hbac", loglevel, fmt, ap); + sss_vdebug_fn(file, line, function, loglevel, fmt, ap); va_end(ap); } } |