X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fcopy-file.c;h=1587905617b3a7ba797817231876eda5943fa747;hb=3d9a7aaf49a48b507300643e444049dac8b5563a;hp=4314f4c6d147237afe521347694031ad6cee52eb;hpb=279ec3aea031cf8865a409f754e8cac9f46bccd0;p=gnulib.git diff --git a/lib/copy-file.c b/lib/copy-file.c index 4314f4c6d..158790561 100644 --- a/lib/copy-file.c +++ b/lib/copy-file.c @@ -1,11 +1,11 @@ /* Copying of files. - Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc. + Copyright (C) 2001-2003, 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2001. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,8 +13,7 @@ GNU General Public License for more details. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -25,6 +24,7 @@ #include #include #include +#include #include #include @@ -41,11 +41,16 @@ #include "full-write.h" #include "acl.h" #include "binary-io.h" -#include "exit.h" #include "gettext.h" #define _(str) gettext (str) +/* The results of open() in this file are not used with fchdir, + therefore save some unnecessary work in fchdir.c. */ +#undef open +#undef close + + void copy_file_preserving (const char *src_filename, const char *dest_filename) {