diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-11 16:19:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-11 16:19:28 +0000 |
commit | 6ca0444420223c224162674902d4f6e4e093962d (patch) | |
tree | c13da1537be3327e041fac86d9fdce68de70298a /coreutils/stat.c | |
parent | 136f42f503cb3e9588e62332d043e92b7475ec4e (diff) | |
download | busybox-w32-6ca0444420223c224162674902d4f6e4e093962d.tar.gz busybox-w32-6ca0444420223c224162674902d4f6e4e093962d.tar.bz2 busybox-w32-6ca0444420223c224162674902d4f6e4e093962d.zip |
syslogd: fix "readpath bug" by using readlink instead
libbb: rename xgetcwd and xreadlink
Diffstat (limited to 'coreutils/stat.c')
-rw-r--r-- | coreutils/stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c index ff14a1599..20ade9472 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -188,7 +188,7 @@ static void print_stat(char *pformat, size_t buf_len, char m, | |||
188 | case 'N': | 188 | case 'N': |
189 | strncat(pformat, "s", buf_len); | 189 | strncat(pformat, "s", buf_len); |
190 | if (S_ISLNK(statbuf->st_mode)) { | 190 | if (S_ISLNK(statbuf->st_mode)) { |
191 | char *linkname = xreadlink(filename); | 191 | char *linkname = xmalloc_readlink_or_warn(filename); |
192 | if (linkname == NULL) { | 192 | if (linkname == NULL) { |
193 | bb_perror_msg("cannot read symbolic link '%s'", filename); | 193 | bb_perror_msg("cannot read symbolic link '%s'", filename); |
194 | return; | 194 | return; |
@@ -477,7 +477,7 @@ static int do_stat(char const *filename, char const *format) | |||
477 | pw_ent = getpwuid(statbuf.st_uid); | 477 | pw_ent = getpwuid(statbuf.st_uid); |
478 | 478 | ||
479 | if (S_ISLNK(statbuf.st_mode)) | 479 | if (S_ISLNK(statbuf.st_mode)) |
480 | linkname = xreadlink(filename); | 480 | linkname = xmalloc_readlink_or_warn(filename); |
481 | if (linkname) | 481 | if (linkname) |
482 | printf(" File: \"%s\" -> \"%s\"\n", filename, linkname); | 482 | printf(" File: \"%s\" -> \"%s\"\n", filename, linkname); |
483 | else | 483 | else |