From 35034789d2cb3746e0774f2377ac4c37dce0a3ec Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 21 Jul 2016 12:34:49 +0200 Subject: [PATCH] String typing fixed --- lib/TLS/src/Credentials.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TLS/src/Credentials.cpp b/lib/TLS/src/Credentials.cpp index fdb4555..9a2c7b8 100644 --- a/lib/TLS/src/Credentials.cpp +++ b/lib/TLS/src/Credentials.cpp @@ -284,7 +284,7 @@ std::wstring eap::credentials_tls::get_identity() const tstring eap::credentials_tls::get_name() const { - return m_cert ? std::move(get_cert_title(m_cert)) : L""; + return m_cert ? std::move(get_cert_title(m_cert)) : _T(""); }