Skip to content

Commit 4ea7c4c

Browse files
authored
Fix su --shell argument handling (#2529)
This fixes #2523.
1 parent c28411b commit 4ea7c4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

userspace/ksud/src/su.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,11 @@ pub fn root_shell() -> Result<()> {
104104
"preserve-environment",
105105
"preserve the entire environment",
106106
);
107-
opts.optflag(
107+
opts.optopt(
108108
"s",
109109
"shell",
110110
"use SHELL instead of the default /system/bin/sh",
111+
"SHELL",
111112
);
112113
opts.optflag("v", "version", "display version number and exit");
113114
opts.optflag("V", "", "display version code and exit");

0 commit comments

Comments
 (0)