From 8c808cebf4e00dbb0825f973404af708e48c826a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 1 Jun 2004 13:24:12 +0000 Subject: [PATCH] (canonicalize_file_name): Update use of xreadlink. --- lib/canonicalize.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3