From 1296f288458c968e720fb4bd27acc39a2fc90240 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 8 Oct 1999 01:12:02 +0000 Subject: [PATCH] The exit() in log_error() was mistakenly removed in a previous version. Put it back... --- logging.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/logging.c b/logging.c index b9f600472..224fa4d8a 100644 --- a/logging.c +++ b/logging.c @@ -387,6 +387,9 @@ log_error(va_alist) free(logline); if (message != logline); free(message); + + if (!(flags & NO_EXIT)) + exit(1); } #define MAX_MAILFLAGS 63 -- 2.40.0