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/lineedit.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/lineedit.c')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 937d70d1f..16256f726 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -1090,7 +1090,7 @@ static void parse_prompt(const char *prmt_ptr) | |||
1090 | size_t cur_prmt_len = 0; | 1090 | size_t cur_prmt_len = 0; |
1091 | char flg_not_length = '['; | 1091 | char flg_not_length = '['; |
1092 | char *prmt_mem_ptr = xzalloc(1); | 1092 | char *prmt_mem_ptr = xzalloc(1); |
1093 | char *pwd_buf = xgetcwd(0); | 1093 | char *pwd_buf = xrealloc_getcwd_or_warn(NULL); |
1094 | char buf2[PATH_MAX + 1]; | 1094 | char buf2[PATH_MAX + 1]; |
1095 | char buf[2]; | 1095 | char buf[2]; |
1096 | char c; | 1096 | char c; |