diff options
author | "Vladimir N. Oleynik" | 2005-09-29 16:18:57 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-09-29 16:18:57 +0000 |
commit | 39a841cecf616098c9c8cf63bbfea5ea2922097c (patch) | |
tree | 5b3a1d569d1e952d8c43899050dca4d6c47bf176 /miscutils/mountpoint.c | |
parent | 6a60c821a81b01a136037f8389bd42d86b37e395 (diff) | |
download | busybox-39a841cecf616098c9c8cf63bbfea5ea2922097c.zip busybox-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.gz |
change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers
reduce 100 bytes don't care in sum
Diffstat (limited to 'miscutils/mountpoint.c')
-rw-r--r-- | miscutils/mountpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/mountpoint.c b/miscutils/mountpoint.c index 46b2d4e..771df55 100644 --- a/miscutils/mountpoint.c +++ b/miscutils/mountpoint.c @@ -46,8 +46,8 @@ int mountpoint_main(int argc, char **argv) if (S_ISDIR(st.st_mode)) { dev_t st_dev = st.st_dev; ino_t st_ino = st.st_ino; - char *p; - bb_xasprintf(&p, "%s/..", arg); + char *p = bb_xasprintf("%s/..", arg); + if (stat(p, &st) == 0) { short ret = (st_dev != st.st_dev) || (st_dev == st.st_dev && st_ino == st.st_ino); |