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 /libbb/copy_file.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 'libbb/copy_file.c')
-rw-r--r-- | libbb/copy_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c index 632064eaa..bd785b71c 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c | |||
@@ -233,7 +233,7 @@ int copy_file(const char *source, const char *dest, int flags) | |||
233 | } else if (S_ISLNK(source_stat.st_mode)) { | 233 | } else if (S_ISLNK(source_stat.st_mode)) { |
234 | char *lpath; | 234 | char *lpath; |
235 | 235 | ||
236 | lpath = xreadlink(source); | 236 | lpath = xmalloc_readlink_or_warn(source); |
237 | if (symlink(lpath, dest) < 0) { | 237 | if (symlink(lpath, dest) < 0) { |
238 | bb_perror_msg("cannot create symlink '%s'", dest); | 238 | bb_perror_msg("cannot create symlink '%s'", dest); |
239 | free(lpath); | 239 | free(lpath); |