summaryrefslogtreecommitdiff
path: root/src/stat.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@rho.meyering.net>2007-08-28 09:11:36 +0200
committerJim Meyering <jim@meyering.net>2007-08-28 11:23:27 +0200
commitc370a7e62f651006b9b1816eada98c8a23961431 (patch)
tree9eba4793d67ebecebf9aa0d3e654ec1896573a3e /src/stat.c
parentcbdbbc4a58970b514bbefcf926d5ff0b785e376a (diff)
downloadcoreutils-c370a7e62f651006b9b1816eada98c8a23961431.tar.xz
Reflect renaming: mreadlink-with-size -> areadlink-with-size.
* bootstrap.conf: Update module name. * src/copy.c (copy_internal): Update header and function names. * src/ls.c (get_link_name): Likewise. * src/readlink.c (main): Likewise. * src/stat.c (print_stat): Likewise.
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stat.c b/src/stat.c
index 183f794ea..912ef87c5 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -67,7 +67,7 @@
#include "quotearg.h"
#include "stat-time.h"
#include "strftime.h"
-#include "mreadlink.h"
+#include "areadlink.h"
#define alignof(type) offsetof (struct { char c; type x; }, x)
@@ -579,7 +579,7 @@ print_stat (char *pformat, size_t prefix_len, char m,
out_string (pformat, prefix_len, quote (filename));
if (S_ISLNK (statbuf->st_mode))
{
- char *linkname = mreadlink_with_size (filename, statbuf->st_size);
+ char *linkname = areadlink_with_size (filename, statbuf->st_size);
if (linkname == NULL)
{
error (0, errno, _("cannot read symbolic link %s"),