From 8dcae81fe36ed352ca91fc11bc32e27bac6f4805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 1 May 2003 18:18:06 +0000 Subject: [PATCH] Add a global variable controlling the output of debugging messages. This allows modules etc. to emit PAM_LOG_DEBUG messages independently of whether libpam was compiled with -DDEBUG. git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@209 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- lib/openpam_impl.h | 4 +++- lib/openpam_log.c | 16 +++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/openpam_impl.h b/lib/openpam_impl.h index 0ab2811..8921cfa 100644 --- a/lib/openpam_impl.h +++ b/lib/openpam_impl.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/openpam_impl.h#20 $ + * $P4: //depot/projects/openpam/lib/openpam_impl.h#21 $ */ #ifndef _OPENPAM_IMPL_H_INCLUDED @@ -44,6 +44,8 @@ extern const char *_pam_sm_func_name[PAM_NUM_PRIMITIVES]; extern const char *_pam_err_name[PAM_NUM_ERRORS]; extern const char *_pam_item_name[PAM_NUM_ITEMS]; +extern int _openpam_debug; + /* * Control flags */ diff --git a/lib/openpam_log.c b/lib/openpam_log.c index 23a51d5..0758580 100644 --- a/lib/openpam_log.c +++ b/lib/openpam_log.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/openpam_log.c#17 $ + * $P4: //depot/projects/openpam/lib/openpam_log.c#18 $ */ #include @@ -45,6 +45,8 @@ #include "openpam_impl.h" +int _openpam_debug = 0; + #if defined(openpam_log) /* @@ -62,12 +64,10 @@ _openpam_log(int level, const char *func, const char *fmt, ...) switch (level) { case PAM_LOG_DEBUG: -#ifndef DEBUG - return; -#else + if (!_openpam_debug) + return; priority = LOG_DEBUG; break; -#endif case PAM_LOG_VERBOSE: priority = LOG_INFO; break; @@ -108,12 +108,10 @@ openpam_log(int level, const char *fmt, ...) switch (level) { case PAM_LOG_DEBUG: -#ifndef DEBUG - return; -#else + if (!_openpam_debug) + return; priority = LOG_DEBUG; break; -#endif case PAM_LOG_VERBOSE: priority = LOG_INFO; break;