setpriv: do not process remaining args
authorPatrick Steinhardt <ps@pks.im>
Sun, 2 Jul 2017 13:42:50 +0000 (15:42 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 18 Jul 2017 17:20:58 +0000 (19:20 +0200)
commitee67c9a60ab202cb8f8cc13d8670a90cbfad7963
tree81f49a27e81c0974155ddab827d65122a5229154
parent8965e5089efea4fdfc27241967098833f56de060
setpriv: do not process remaining args

By default, the 'getopt32' call will continue parsing the command line
even after hitting a non-option string. But in setpriv, this should be
avoided, as all parameters following the initial non-option argument are
in fact arguments to the binary that is to be executed by setpriv.
Otherwise, calling e.g. 'busybox setpriv ls -l' would result in an error
due to the unknown parameter "-l".

Fix the issue by passing "+" as the first character in the options
string. This will cause 'getopt32' to stop processing after hitting the
first non-option.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/setpriv.c