Commit 4a9e85ee authored by Kyle Horimoto's avatar Kyle Horimoto Committed by Commit Bot

[CrOS Network] Fix broken connections to EAP-TLS Wi-Fi networks.

When configuring networks, the networking UI compiles a dictionary of
properties describing the new network to configure. In this particular
case, the "clientCertPkcs11Id" field of the dictionary was misspelled
using capital letters: "clientCertPKCS11Id".

This CL corrects the spelling and fixes this connection flow.

Bug: 1019936
Change-Id: I421c340a36c3a8b9404b07e76aa86f6cffae9829
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1915279
Auto-Submit: Kyle Horimoto <khorimoto@chromium.org>
Reviewed-by: default avatarSteven Bennetts <stevenjb@chromium.org>
Commit-Queue: Kyle Horimoto <khorimoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#715160}
parent 8aa81a32
...@@ -1479,7 +1479,7 @@ Polymer({ ...@@ -1479,7 +1479,7 @@ Polymer({
const pkcs11Id = this.getUserCertPkcs11Id_(); const pkcs11Id = this.getUserCertPkcs11Id_();
eap.clientCertType = pkcs11Id ? 'PKCS11Id' : 'None'; eap.clientCertType = pkcs11Id ? 'PKCS11Id' : 'None';
eap.clientCertPKCS11Id = pkcs11Id || ''; eap.clientCertPkcs11Id = pkcs11Id || '';
}, },
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment