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
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user