mirror of
https://github.com/openwrt/routing.git
synced 2025-02-12 03:48:27 +00:00
Fix a buffer overflow in case the query string is too long. Signed-off-by: Moritz Warning <moritzwarning@web.de>
10 lines
216 B
Bash
10 lines
216 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF
|
|
delete firewall.nodogsplash
|
|
set firewall.nodogsplash=include
|
|
set firewall.nodogsplash.type=script
|
|
set firewall.nodogsplash.path=/usr/lib/nodogsplash/restart.sh
|
|
commit firewall
|
|
EOF
|