From 351b7040f65ef987ac990dc9ffde896ea67c1611 Mon Sep 17 00:00:00 2001 From: "kali kaneko (leap communications)" Date: Wed, 15 Jun 2022 16:37:38 +0200 Subject: [bug] typo in --data-ciphers option --- pkg/vpn/bonafide/eip_service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/vpn/bonafide/eip_service.go b/pkg/vpn/bonafide/eip_service.go index ba3eef8..71c9b82 100644 --- a/pkg/vpn/bonafide/eip_service.go +++ b/pkg/vpn/bonafide/eip_service.go @@ -241,9 +241,9 @@ func (eip eipService) getOpenvpnArgs() []string { // this is a transitioning hack for the transition to float deployment, // assuming we're using openvpn 2.5. We're treating the "cipher" // string that the platform sends us as the newer data-cipher - // which includes colon separate ciphers. + // which includes colon-separated ciphers. if arg == "cipher" { - arg = "data-cipher" + arg = "data-ciphers" } args = append(args, "--"+arg) args = append(args, strings.Split(v, " ")...) -- cgit v1.2.3