From: Jim Meyering Date: Tue, 1 Jun 2004 13:24:12 +0000 (+0000) Subject: (canonicalize_file_name): Update use of xreadlink. X-Git-Tag: v5.3.0~1434 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c808cebf4e00dbb0825f973404af708e48c826a;p=thirdparty%2Fcoreutils.git (canonicalize_file_name): Update use of xreadlink. --- diff --git a/lib/canonicalize.c b/lib/canonicalize.c index 643f75b145..c1f5aacbb6 100644 --- a/lib/canonicalize.c +++ b/lib/canonicalize.c @@ -1,5 +1,5 @@ /* Return the canonical absolute name of a given file. - Copyright (C) 1996-2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1996-2001, 2002, 2003, 2004 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 @@ -260,7 +260,7 @@ canonicalize_file_name (const char *name) } # endif /* MAXSYMLINKS */ - buf = xreadlink (rpath); + buf = xreadlink (rpath, st.st_size); if (!buf) goto error;