mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 17:18:59 +00:00
procd: allow adding empty strings to arrays
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42456
This commit is contained in:
parent
9ccacbaa40
commit
2dabf3a775
@ -75,7 +75,7 @@ _procd_close_service() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_procd_add_array_data() {
|
_procd_add_array_data() {
|
||||||
while [ -n "$1" ]; do
|
while [ "$#" -gt 0 ]; do
|
||||||
json_add_string "" "$1"
|
json_add_string "" "$1"
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user