uutils: fix 'uutils --help <util>'

This commit is contained in:
Michael Gehring
2014-07-01 17:19:07 +02:00
parent 401c216e6a
commit afa0a9e6f0
+1 -1
View File
@@ -86,7 +86,7 @@ fn main() {
let util = args.get(1).as_slice();
match umap.find_equiv(&util) {
Some(&uumain) => {
os::set_exit_status(uumain(vec!["--help".to_string()]));
os::set_exit_status(uumain(vec![util.to_string(), "--help".to_string()]));
return
}
None => {