aredn: bugfix max tunnel limited to 9 instead of 10

fixes #564
This commit is contained in:
Joe Ayers 2020-09-07 10:20:14 -07:00 committed by Joe AE6XE
parent ad578d8944
commit f4a1e73189
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ allowed_client_config() {
local new_file="$2"
local enabled node pwd netip clientip serverip persist compress keepalive proto
if [ $TUNNUM -lt $MAXTUNNUM ]
if [ $TUNNUM -le $MAXTUNNUM ]
then
config_get_bool enabled "$cfg" enabled
config_get node "$cfg" node