X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fdup-safer.c;h=034297aa1ef415be1e22d1933ca5bcf992824c13;hb=5131be5b019b1110cd597012b63e48886aaaafc7;hp=f72fd845f397a1a6e413db765e8b08972220772a;hpb=196a4d4693a1b50eb309df386dfb5a0f72169d88;p=gnulib.git diff --git a/lib/dup-safer.c b/lib/dup-safer.c index f72fd845f..034297aa1 100644 --- a/lib/dup-safer.c +++ b/lib/dup-safer.c @@ -1,5 +1,5 @@ /* Invoke dup, but avoid some glitches. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2004, 2005 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 @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Paul Eggert. */ @@ -21,14 +21,9 @@ # include #endif -#include -#ifndef errno -extern int errno; -#endif +#include "unistd-safer.h" -#if HAVE_FCNTL_H -# include -#endif +#include #if HAVE_UNISTD_H # include @@ -37,8 +32,6 @@ extern int errno; # define STDERR_FILENO 2 #endif -#include - /* Like dup, but do not return STDIN_FILENO, STDOUT_FILENO, or STDERR_FILENO. */ @@ -48,15 +41,8 @@ dup_safer (int fd) #ifdef F_DUPFD return fcntl (fd, F_DUPFD, STDERR_FILENO + 1); #else - int f = dup (fd); - if (0 <= f && f <= STDERR_FILENO) - { - int f1 = dup_safer (f); - int e = errno; - close (f); - errno = e; - f = f1; - } - return f; + /* fd_safer calls us back, but eventually the recursion unwinds and + does the right thing. */ + return fd_safer (dup (fd)); #endif }