diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-11 16:19:28 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-11 16:19:28 +0000 |
commit | 661a976a4fe1564096942a548031bcc1a4915057 (patch) | |
tree | c13da1537be3327e041fac86d9fdce68de70298a /archival | |
parent | 5614b1d6f3e1a5c137f431999fbbb38ce8cb8db8 (diff) | |
download | busybox-w32-661a976a4fe1564096942a548031bcc1a4915057.tar.gz busybox-w32-661a976a4fe1564096942a548031bcc1a4915057.tar.bz2 busybox-w32-661a976a4fe1564096942a548031bcc1a4915057.zip |
syslogd: fix "readpath bug" by using readlink instead
libbb: rename xgetcwd and xreadlink
git-svn-id: svn://busybox.net/trunk/busybox@17854 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-rw-r--r-- | archival/tar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/tar.c b/archival/tar.c index d8e36749e..57da0b6b8 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -273,8 +273,8 @@ static int writeTarHeader(struct TarBallInfo *tbInfo, | |||
273 | tbInfo->hlInfo->name, 0); | 273 | tbInfo->hlInfo->name, 0); |
274 | #endif | 274 | #endif |
275 | } else if (S_ISLNK(statbuf->st_mode)) { | 275 | } else if (S_ISLNK(statbuf->st_mode)) { |
276 | char *lpath = xreadlink(fileName); | 276 | char *lpath = xmalloc_readlink_or_warn(fileName); |
277 | if (!lpath) /* Already printed err msg inside xreadlink() */ | 277 | if (!lpath) |
278 | return FALSE; | 278 | return FALSE; |
279 | header.typeflag = SYMTYPE; | 279 | header.typeflag = SYMTYPE; |
280 | strncpy(header.linkname, lpath, sizeof(header.linkname)); | 280 | strncpy(header.linkname, lpath, sizeof(header.linkname)); |