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:
parent
6a60c821a8
commit
39a841cecf
16 changed files with 33 additions and 49 deletions
|
@ -84,11 +84,8 @@ void run_shell ( const char *shell, int loginshell, const char *command, const c
|
|||
|
||||
args [0] = bb_get_last_path_component ( bb_xstrdup ( shell ));
|
||||
|
||||
if ( loginshell ) {
|
||||
char *args0;
|
||||
bb_xasprintf ( &args0, "-%s", args [0] );
|
||||
args [0] = args0;
|
||||
}
|
||||
if ( loginshell )
|
||||
args [0] = bb_xasprintf ("-%s", args [0]);
|
||||
|
||||
if ( command ) {
|
||||
args [argno++] = "-c";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue