From 70e5178bdeaee9c81cbe752a25408c0b867757b8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 11 May 2000 07:21:33 +0000 Subject: (usage): Don't call close_stdout directly, since that didn't cover --version output. (main): Arrange to call close_stdout via atexit, instead. --- src/true.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/true.c') diff --git a/src/true.c b/src/true.c index d28bec34b..53c8f777f 100644 --- a/src/true.c +++ b/src/true.c @@ -26,7 +26,6 @@ These option names may not be abbreviated.\n\ ") , program_name, program_name); puts (_("\nReport bugs to .")); - close_stdout (); exit (status); } @@ -38,6 +37,8 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); + atexit (close_stdout); + /* Recognize --help or --version only if it's the only command-line argument and if POSIXLY_CORRECT is not set. */ if (argc == 2 && getenv ("POSIXLY_CORRECT") == NULL) -- cgit v1.2.3-54-g00ecf