summaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorDenis Vlasenko2007-02-11 16:19:28 +0000
committerDenis Vlasenko2007-02-11 16:19:28 +0000
commit6ca0444420223c224162674902d4f6e4e093962d (patch)
treec13da1537be3327e041fac86d9fdce68de70298a /debianutils
parent136f42f503cb3e9588e62332d043e92b7475ec4e (diff)
downloadbusybox-6ca0444420223c224162674902d4f6e4e093962d.zip
busybox-6ca0444420223c224162674902d4f6e4e093962d.tar.gz
syslogd: fix "readpath bug" by using readlink instead
libbb: rename xgetcwd and xreadlink
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/readlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/readlink.c b/debianutils/readlink.c
index 8f9cfe4..1a2c1ef 100644
--- a/debianutils/readlink.c
+++ b/debianutils/readlink.c
@@ -38,7 +38,7 @@ int readlink_main(int argc, char **argv)
if (opt) {
buf = realpath(fname, bb_common_bufsiz1);
} else {
- buf = xreadlink(fname);
+ buf = xmalloc_readlink_or_warn(fname);
}
if (!buf)