summaryrefslogtreecommitdiff
path: root/src/ln.c
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2007-08-20 17:01:18 +0200
committerJim Meyering <jim@meyering.net>2007-08-20 17:03:45 +0200
commitfeed02af9d09527745d10138cc08da9ed0702b7e (patch)
treeacf5df1c403e748267ce956baf720e0bbd26ca0e /src/ln.c
parenta05ae2f7168f42d290512ae919bb9ce4aa4d7063 (diff)
downloadcoreutils-feed02af9d09527745d10138cc08da9ed0702b7e.tar.xz
Avoid consuming too much seekable input when yesno is used.
* bootstrap.conf (gnulib_modules): Grab closein. * src/system.h (includes): Also include closein.h. * src/mv.c (main): Use close_stdin, not close_stdout. * src/cp.c (main): Likewise. * src/ln.c (main): Likewise. * src/rm.c (main): Likewise. * src/install.c (main): Likewise. * NEWS: Document the fix.
Diffstat (limited to 'src/ln.c')
-rw-r--r--src/ln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ln.c b/src/ln.c
index aec8b36b3..3ddcfdfff 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -1,5 +1,5 @@
/* `ln' program to create links between files.
- Copyright (C) 1986, 1989-1991, 1995-2006 Free Software Foundation, Inc.
+ Copyright (C) 1986, 1989-1991, 1995-2007 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
@@ -398,7 +398,7 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
- atexit (close_stdout);
+ atexit (close_stdin);
/* FIXME: consider not calling getenv for SIMPLE_BACKUP_SUFFIX unless
we'll actually use backup_suffix_string. */