argv0: default to name now, not the path

This commit is contained in:
Albert S. 2018-10-04 22:00:14 +02:00
부모 ce0742d335
커밋 22d442b040
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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;