diff options
author | Ermal LUÇI <eri@pfsense.org> | 2015-01-14 17:02:59 +0100 |
---|---|---|
committer | Ermal LUÇI <eri@pfsense.org> | 2015-01-14 17:03:22 +0100 |
commit | 37656b10150bb59d569560f056fce42e47389870 (patch) | |
tree | ad48d15e94669255602620bb4f5ee3759f9fce0b | |
parent | 54ab1bdcaa35e314016d7ea26ac17a5dd15a2e05 (diff) | |
download | pfsense-37656b10150bb59d569560f056fce42e47389870.zip pfsense-37656b10150bb59d569560f056fce42e47389870.tar.gz |
Oops add missing curly
-rw-r--r-- | etc/inc/vpn.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/vpn.inc b/etc/inc/vpn.inc index f37cde2..61e338d 100644 --- a/etc/inc/vpn.inc +++ b/etc/inc/vpn.inc @@ -632,7 +632,7 @@ EOD; $authentication .= "leftauth=pubkey\n\trightauth=eap-tls"; if (!empty($ph1ent['certref'])) $authentication .= "\n\tleftcert={$certpath}/cert-{$ph1ent['ikeid']}.crt"; - } else + } else { $authentication = "leftauth=eap-tls\n\trightauth=eap-tls"; if (!empty($ph1ent['certref'])) $authentication .= "\n\tleftcert={$certpath}/cert-{$ph1ent['ikeid']}.crt"; |