diff options
| author | Leon M. Busch-George | 2024-10-19 09:52:51 +0000 |
|---|---|---|
| committer | John Crispin | 2024-12-12 08:46:38 +0000 |
| commit | 650410fca4596328d0ec75cefd7e1b202e896a48 (patch) | |
| tree | 2a28fc180e8ce2b40db3e80452970b350c1aad6b | |
| parent | bf768867dc0eea6b51d2db90a8f1380cc52529c1 (diff) | |
| download | openwrt-650410fca4596328d0ec75cefd7e1b202e896a48.tar.gz | |
ncm: sort config variables a little and fix minor bugs
Group 'local' declarations and 'json_get_vars', sort alphabetically within groups, and split off more generic parameters.
- delegate and sourcefilter were not declared as local variables
Signed-off-by: Leon M. Busch-George <leon@georgemail.eu>
| -rw-r--r-- | package/network/utils/comgt/files/ncm.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/network/utils/comgt/files/ncm.sh b/package/network/utils/comgt/files/ncm.sh index e9412b28fe..761dafb24e 100644 --- a/package/network/utils/comgt/files/ncm.sh +++ b/package/network/utils/comgt/files/ncm.sh @@ -28,12 +28,13 @@ proto_ncm_init_config() { proto_ncm_setup() { local interface="$1" - local manufacturer initialize setmode connect finalize devname devpath ifpath + local connect context_type devname devpath finalize ifpath initialize manufacturer setmode - local device ifname apn auth username password pincode delay mode pdptype profile $PROTO_DEFAULT_OPTIONS - json_get_vars device ifname apn auth username password pincode delay mode pdptype sourcefilter delegate profile $PROTO_DEFAULT_OPTIONS + local delegate sourcefilter $PROTO_DEFAULT_OPTIONS + json_get_vars delegate sourcefilter $PROTO_DEFAULT_OPTIONS - local context_type + local apn auth delay device ifname mode password pdptype pincode profile username + json_get_vars apn auth delay device ifname mode password pdptype pincode profile username [ "$metric" = "" ] && metric="0" |