1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

chroot: remove a couple more braces

This commit is contained in:
Arcterus 2014-06-16 15:55:39 -07:00
parent b16b0204da
commit c33ab0e378

View file

@ -74,8 +74,8 @@ pub fn uumain(args: Vec<String>) -> int {
let command: Vec<&str> = match opts.free.len() {
1 => {
let shell: &str = match userShell {
None => {defaultShell}
Some(ref s) => {s.as_slice()}
None => defaultShell,
Some(ref s) => s.as_slice()
};
vec!(shell, defaultOption)
}