Make the log level default to PAM_LOG_ERROR.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@175 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2002-12-04 15:15:03 +00:00
parent 1d796b814b
commit e9c79d25f0
1 changed files with 3 additions and 1 deletions

View File

@ -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#15 $
* $P4: //depot/projects/openpam/lib/openpam_log.c#16 $
*/
#include <ctype.h>
@ -74,6 +74,7 @@ _openpam_log(int level, const char *func, const char *fmt, ...)
priority = LOG_NOTICE;
break;
case PAM_LOG_ERROR:
default:
priority = LOG_ERR;
break;
}
@ -118,6 +119,7 @@ openpam_log(int level, const char *fmt, ...)
priority = LOG_NOTICE;
break;
case PAM_LOG_ERROR:
default:
priority = LOG_ERR;
break;
}