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 /applets | |
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 'applets')
-rw-r--r-- | applets/busybox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 99af9ca02..0387d79b7 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -92,7 +92,7 @@ int busybox_main(int argc, char **argv) | |||
92 | 92 | ||
93 | /* link */ | 93 | /* link */ |
94 | // XXX: FIXME: this is broken. Why not just use argv[0] ? | 94 | // XXX: FIXME: this is broken. Why not just use argv[0] ? |
95 | busybox = xreadlink("/proc/self/exe"); | 95 | busybox = xmalloc_readlink_or_warn("/proc/self/exe"); |
96 | if (!busybox) | 96 | if (!busybox) |
97 | return 1; | 97 | return 1; |
98 | install_links(busybox, use_symbolic_links); | 98 | install_links(busybox, use_symbolic_links); |