Previously it was possible (most probably unintentionally) to perform
command which gives listing of directory contents on the output:
$ adb shell su -c toolbox ls /
acct
cache
charger
config
...
Using such syntax in newer versions of adb, return an error:
$ adb shell su -c toolbox ls /
Unknown id: ls
It is needed to quote argument passed to the 'shell' parameter on adb,
like:
$ adb shell 'su -c "toolbox ls /"'
acct
cache
charger
config
...
This patch fixes this issue for both adb versions.