X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fdup-safer.c;h=5441b960eb1200fdbc4cd8b3ec4350d20c8612c1;hb=368777cd04f76f7a3b242006fdf6c1e6b77381de;hp=7d9b2be349035c40b2277dd2367b07e37b9bb37e;hpb=ae5dae6fd1caa993e969b869e42820a119385cbc;p=gnulib.git diff --git a/lib/dup-safer.c b/lib/dup-safer.c index 7d9b2be34..5441b960e 100644 --- a/lib/dup-safer.c +++ b/lib/dup-safer.c @@ -1,7 +1,6 @@ /* Invoke dup, but avoid some glitches. - Copyright (C) 2001, 2004, 2005, 2006, 2009 Free Software - Foundation, Inc. + Copyright (C) 2001, 2004-2006, 2009-2011 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 @@ -23,7 +22,6 @@ #include "unistd-safer.h" #include - #include /* Like dup, but do not return STDIN_FILENO, STDOUT_FILENO, or @@ -32,11 +30,5 @@ int dup_safer (int fd) { -#if defined F_DUPFD && !defined FCHDIR_REPLACEMENT return fcntl (fd, F_DUPFD, STDERR_FILENO + 1); -#else - /* fd_safer calls us back, but eventually the recursion unwinds and - does the right thing. */ - return fd_safer (dup (fd)); -#endif }