Hi, I am quite surprised that I didn't notice this earlier, but thanks for sending in the patch. I fixed the whitespace because you indented with spaces and sometimes tabs where we only use tabs. Best, -Michael On Sun, 2017-10-08 at 20:41 +0200, Peter Müller wrote: > This fixes bug #11501 which causes IPsec connections to crash if > Curve25519 has been enabled. > > Signed-off-by: Peter Müller > --- > diff --git a/html/cgi-bin/vpnmain.cgi b/html/cgi-bin/vpnmain.cgi > index f9508b53d..25551008f 100644 > --- a/html/cgi-bin/vpnmain.cgi > +++ b/html/cgi-bin/vpnmain.cgi > @@ -3125,6 +3125,8 @@ sub make_algos($$$$$) { > > if ($grp =~ m/^e(.*)$/) { > push(@algo, "ecp$1"); > + } elsif ($grp =~ m/curve25519/) { > + push(@algo, "$grp"); > } else { > push(@algo, "modp$grp"); > } > @@ -3140,6 +3142,8 @@ sub make_algos($$$$$) { > # noop > } elsif ($grp =~ m/^e(.*)$/) { > push(@algo, "ecp$1"); > + } elsif ($grp =~ m/curve25519/) { > + push(@algo, "$grp"); > } else { > push(@algo, "modp$grp"); > }