From cda81dd696b8f94cd098025f3ac7d3aa607a8861 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 16 Jun 2016 00:25:10 +0200 Subject: [PATCH] Aesthetic modifications --- lib/EAPBase/src/Credentials.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/EAPBase/src/Credentials.cpp b/lib/EAPBase/src/Credentials.cpp index cbeccca..5230c47 100644 --- a/lib/EAPBase/src/Credentials.cpp +++ b/lib/EAPBase/src/Credentials.cpp @@ -290,7 +290,7 @@ bool eap::credentials_pass::retrieve(_In_ LPCTSTR pszTargetName, _Out_ EAP_ERROR } // Convert Base64 to binary encrypted password, since CredProtectA() fail for binary strings. - vector > password; + vector password; base64_dec dec; bool is_last; dec.decode(password, is_last, password_base64.c_str(), password_base64.length());