summaryrefslogtreecommitdiff
path: root/src/chroot.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-07 14:49:06 +0000
committerJim Meyering <jim@meyering.net>2000-05-07 14:49:06 +0000
commit73ed5ed51e0ae7ac5c7f606ba571b9cfbf5707b3 (patch)
treebac1dff50796148d40cd211942449243fd8182bb /src/chroot.c
parenta3d40a9447e08adf7783f1e096463e64ed82f761 (diff)
downloadcoreutils-73ed5ed51e0ae7ac5c7f606ba571b9cfbf5707b3.tar.xz
Include "closeout.h".
(main): Call atexit with close_stdout.
Diffstat (limited to 'src/chroot.c')
-rw-r--r--src/chroot.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/chroot.c b/src/chroot.c
index 77f970c1e..df050d04d 100644
--- a/src/chroot.c
+++ b/src/chroot.c
@@ -1,5 +1,5 @@
/* chroot -- run command or shell with special root directory
- Copyright (C) 95, 96, 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 95, 96, 1997, 1999, 2000 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -24,6 +24,7 @@
#include "system.h"
#include "long-options.h"
#include "error.h"
+#include "closeout.h"
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "chroot"
@@ -66,6 +67,8 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
+ atexit (close_stdout);
+
parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
AUTHORS, usage);
if (argc == 1)