From d4a7314383c221c0185234e6671f90d69ec22da9 Mon Sep 17 00:00:00 2001 From: des Date: Wed, 4 Dec 2002 14:37:35 +0000 Subject: Add default cases to the switches (perforce change 21902) --- contrib/openpam/lib/openpam_log.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'contrib/openpam/lib') diff --git a/contrib/openpam/lib/openpam_log.c b/contrib/openpam/lib/openpam_log.c index 1bbe623..f512c62 100644 --- a/contrib/openpam/lib/openpam_log.c +++ b/contrib/openpam/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#15 $ + * $P4: //depot/projects/openpam/lib/openpam_log.c#16 $ */ #include @@ -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; } -- cgit v1.1