summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkg/vpn/bonafide/eip_service.go4
1 files 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, " ")...)