diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-10-10 05:00:11 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-10-10 05:00:11 +0000 |
commit | 6180f388df5004d5435cd6912445130cf260f94e (patch) | |
tree | 5a94a7b9640ad989a42d1fabeed6dc3f75c073f9 /libpam/pam_dispatch.c | |
parent | ba9bf5016669e0b940243c51c62236968119313a (diff) | |
download | pam-6180f388df5004d5435cd6912445130cf260f94e.tar.gz pam-6180f388df5004d5435cd6912445130cf260f94e.tar.bz2 pam-6180f388df5004d5435cd6912445130cf260f94e.zip |
Relevant BUGIDs: 424315
Purpose of commit: cleanup, new feature
Commit summary:
---------------
I'm adding a new module (pam_debug) that helped me to verify that
the new setcred handling did not suffer from a bug in the handling
of 'auth optional'. I'm also fixing a D(()) line from
libpam/pam_dispatch.c which was simply broken.
[There is still an outstanding backward compatibility issue with
pam_dispatch that I'll address with respect to Bug 468724.]
Diffstat (limited to 'libpam/pam_dispatch.c')
-rw-r--r-- | libpam/pam_dispatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpam/pam_dispatch.c b/libpam/pam_dispatch.c index 6212ac87..2a6befd4 100644 --- a/libpam/pam_dispatch.c +++ b/libpam/pam_dispatch.c @@ -126,8 +126,7 @@ static int _pam_dispatch_aux(pam_handle_t *pamh, int flags, struct handler *h, action = h->actions[cached_retval]; } - D((stderr, - "use_cached_chain=%d action=%d cached_retval=%d retval=%d\n", + D(("use_cached_chain=%d action=%d cached_retval=%d retval=%d", use_cached_chain, action, cached_retval, retval)); /* decide what to do */ |