From 87b8670b2749d02ffdc6c06506ac692b09db5be2 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 22 Sep 2009 13:11:29 -0400 Subject: Revert "Use syslog for logging error conditions in SSSD" This reverts commit 8c50bd085c0efe5fde354deee2c8118887aae29d. Amended: commit 1016af2b1b97ad4290ccce8fa462cc7e3c191b2e also made use of the SYSLOG_ERROR() macro, so those portions of that code also needed to be reverted. --- server/providers/krb5/krb5_auth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/providers/krb5') diff --git a/server/providers/krb5/krb5_auth.c b/server/providers/krb5/krb5_auth.c index 0eac91f5..03e79032 100644 --- a/server/providers/krb5/krb5_auth.c +++ b/server/providers/krb5/krb5_auth.c @@ -793,11 +793,11 @@ static void krb5_pam_handler_done(struct tevent_req *req) } break; default: - SYSLOG_ERROR("unsupported PAM command [%d].\n", pd->cmd); + DEBUG(0, ("unsupported PAM command [%d].\n", pd->cmd)); } if (password == NULL) { - SYSLOG_ERROR("password not available, offline auth may not work.\n"); + DEBUG(0, ("password not available, offline auth may not work.\n")); goto done; } -- cgit