syslogd: fix "readpath bug" by using readlink instead
libbb: rename xgetcwd and xreadlink
This commit is contained in:
parent
136f42f503
commit
6ca0444420
15 changed files with 47 additions and 39 deletions
|
@ -16,7 +16,7 @@ char *bb_simplify_path(const char *path)
|
|||
if (path[0] == '/')
|
||||
start = xstrdup(path);
|
||||
else {
|
||||
s = xgetcwd(NULL);
|
||||
s = xrealloc_getcwd_or_warn(NULL);
|
||||
start = concat_path_file(s, path);
|
||||
free(s);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue