diff options
author | Jim Meyering <meyering@rho.meyering.net> | 2007-08-28 09:11:36 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-28 11:23:27 +0200 |
commit | c370a7e62f651006b9b1816eada98c8a23961431 (patch) | |
tree | 9eba4793d67ebecebf9aa0d3e654ec1896573a3e /src | |
parent | cbdbbc4a58970b514bbefcf926d5ff0b785e376a (diff) | |
download | coreutils-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')
-rw-r--r-- | src/copy.c | 6 | ||||
-rw-r--r-- | src/ls.c | 4 | ||||
-rw-r--r-- | src/readlink.c | 4 | ||||
-rw-r--r-- | src/stat.c | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/copy.c b/src/copy.c index c1d8519d5..92588bf14 100644 --- a/src/copy.c +++ b/src/copy.c @@ -53,7 +53,7 @@ #include "utimecmp.h" #include "utimens.h" #include "write-any-file.h" -#include "mreadlink.h" +#include "areadlink.h" #include "yesno.h" #ifndef HAVE_FCHOWN @@ -1815,7 +1815,7 @@ copy_internal (char const *src_name, char const *dst_name, } else if (S_ISLNK (src_mode)) { - char *src_link_val = mreadlink_with_size (src_name, src_sb.st_size); + char *src_link_val = areadlink_with_size (src_name, src_sb.st_size); if (src_link_val == NULL) { error (0, errno, _("cannot read symbolic link %s"), quote (src_name)); @@ -1836,7 +1836,7 @@ copy_internal (char const *src_name, char const *dst_name, in some cases, e.g., if the destination symlink has the wrong ownership, permissions, or time stamps. */ char *dest_link_val = - mreadlink_with_size (dst_name, dst_sb.st_size); + areadlink_with_size (dst_name, dst_sb.st_size); if (dest_link_val && STREQ (dest_link_val, src_link_val)) same_link = true; free (dest_link_val); @@ -104,7 +104,7 @@ #include "strftime.h" #include "strverscmp.h" #include "xstrtol.h" -#include "mreadlink.h" +#include "areadlink.h" #define PROGRAM_NAME (ls_mode == LS_LS ? "ls" \ : (ls_mode == LS_MULTI_COL \ @@ -2840,7 +2840,7 @@ is_directory (const struct fileinfo *f) static void get_link_name (char const *filename, struct fileinfo *f, bool command_line_arg) { - f->linkname = mreadlink_with_size (filename, f->stat.st_size); + f->linkname = areadlink_with_size (filename, f->stat.st_size); if (f->linkname == NULL) file_failure (command_line_arg, _("cannot read symbolic link %s"), filename); diff --git a/src/readlink.c b/src/readlink.c index e7d05124e..859e2a30c 100644 --- a/src/readlink.c +++ b/src/readlink.c @@ -24,7 +24,7 @@ #include "system.h" #include "canonicalize.h" #include "error.h" -#include "mreadlink.h" +#include "areadlink.h" #include "quote.h" /* The official name of this program (e.g., no `g' prefix). */ @@ -158,7 +158,7 @@ main (int argc, char **argv) value = (can_mode != -1 ? canonicalize_filename_mode (fname, can_mode) - : mreadlink_with_size (fname, 63)); + : areadlink_with_size (fname, 63)); if (value) { printf ("%s%s", value, (no_newline ? "" : "\n")); 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"), |