From 057c7692b1fd41f1683f68cf20742f6f025d1c17 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 6 Dec 2024 14:34:38 +0100 Subject: [PATCH] wireguard-functions.pl: Fix Perl syntax issue Signed-off-by: Michael Tremer --- config/cfgroot/wireguard-functions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cfgroot/wireguard-functions.pl b/config/cfgroot/wireguard-functions.pl index 210423204..ee4b2d1de 100644 --- a/config/cfgroot/wireguard-functions.pl +++ b/config/cfgroot/wireguard-functions.pl @@ -485,7 +485,7 @@ sub parse_configuration($) { } } - $peer{'REMOTE_SUBNETS'} = join(/, /, @networks); + $peer{'REMOTE_SUBNETS'} = join(", ", @networks); # Endpoint } elsif ($key eq "Endpoint") { my $address = $val; -- 2.39.5