Commit ae3ea72e authored by guest715's avatar guest715
Browse files

Fix mismatch between tls_verify_client parameter in the eap module manifest...

Fix mismatch between tls_verify_client parameter in the eap module manifest and tls_client in the eap template
parent db630ecc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -543,7 +543,7 @@ eap {
      tmpdir = <%= @tls_tmpdir %>
<%- end -%>

<%- if @tls_client -%>
<%- if @tls_verify_client -%>
      #  The command used to verify the client cert.
      #  We recommend using the OpenSSL command-line
      #  tool.
@@ -556,7 +556,7 @@ eap {
      #  in PEM format.  This file is automatically
      #  deleted by the server when the command
      #  returns.
      client = "<%= @tls_client %>"
      client = "<%= @tls_verify_client %>"
<%- end -%>
    }