argv0: default to name now, not the path

This commit is contained in:
Albert S. 2018-10-04 22:00:14 +02:00
parent ce0742d335
commit 22d442b040
1 changed files with 2 additions and 1 deletions

View File

@ -270,7 +270,8 @@ fn create_execv_args(entry : & Entry, cmdargs : &Vec<String>) -> Vec<* const lib
}
else
{
args.insert(0, to_cstring(&entry.cmd));
let cmdbegin = &entry.cmd.rfind("/").unwrap() + 1;
args.insert(0, to_cstring(&entry.cmd.split_at(cmdbegin).1));
}
args.push(std::ptr::null());
return args;