From 8a2e3d500c9ea2b0f84e22b99e44ccf0aabe8e2d Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 9 Mar 2020 18:01:32 +0000 Subject: [PATCH] Replacing exit with return --- src/faillog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/faillog.c b/src/faillog.c index 3ab48db3..e2c78383 100644 --- a/src/faillog.c +++ b/src/faillog.c @@ -165,7 +165,7 @@ static void print_one (/*@null@*/const struct passwd *pw, bool force) tm = localtime (&fl.fail_time); if (!tm) { fprintf (stderr, "Cannot read time from faillog.\n"); - exit (EXIT_FAILURE); + return; } #ifdef HAVE_STRFTIME strftime (ptime, sizeof (ptime), "%D %H:%M:%S %z", tm);