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 /include | |
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 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 218a1935c..077b65840 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -258,8 +258,8 @@ extern int ndelay_off(int fd); | |||
258 | extern DIR *xopendir(const char *path); | 258 | extern DIR *xopendir(const char *path); |
259 | extern DIR *warn_opendir(const char *path); | 259 | extern DIR *warn_opendir(const char *path); |
260 | 260 | ||
261 | char *xgetcwd(char *cwd); | 261 | char *xrealloc_getcwd_or_warn(char *cwd); |
262 | char *xreadlink(const char *path); | 262 | char *xmalloc_readlink_or_warn(const char *path); |
263 | char *xmalloc_realpath(const char *path); | 263 | char *xmalloc_realpath(const char *path); |
264 | extern void xstat(const char *filename, struct stat *buf); | 264 | extern void xstat(const char *filename, struct stat *buf); |
265 | extern pid_t spawn(char **argv); | 265 | extern pid_t spawn(char **argv); |