Applet for crypting a string.
config CHPASSWD
- bool "chpasswd"
- default n
- help
- chpasswd reads a file of user name and password pairs from
- standard input and uses this information to update a group of
- existing users.
+ bool "chpasswd"
+ default n
+ help
+ chpasswd reads a file of user name and password pairs from
+ standard input and uses this information to update a group of
+ existing users.
config SU
bool "su"
if (!argv[assignment_cnt])
_exit(EXIT_SUCCESS);
- new_env = expand_assignments(argv, assignment_cnt);
+ new_env = expand_assignments(argv, assignment_cnt);
#if BB_MMU
putenv_all(new_env);
free(new_env); /* optional */
}
G.curFileSize +=
#endif
- full_write(G.logFD, msg, len);
+ full_write(G.logFD, msg, len);
fl.l_type = F_UNLCK;
fcntl(G.logFD, F_SETLKW, &fl);
}
* "/sys/block/..." is for block devices. "/sys/bus" etc is not.
* But since 2.6.25 block devices are also in /sys/class/block.
* We use strstr("/block/") to forestall future surprises. */
- type = S_IFCHR;
+ type = S_IFCHR;
if (strstr(path, "/block/"))
- type = S_IFBLK;
+ type = S_IFBLK;
#if ENABLE_FEATURE_MDEV_CONF
parser = config_open2("/etc/mdev.conf", fopen_for_read);