Ticket #11005: proxy_user.patch
File proxy_user.patch, 424 bytes (added by , 8 years ago) |
---|
-
src/engine/proxy.cpp
old new 682 682 683 683 std::wstring CProxySocket::GetUser() const 684 684 { 685 return fz::to_wstring (m_user);685 return fz::to_wstring_from_utf8(m_user); 686 686 } 687 687 688 688 std::wstring CProxySocket::GetPass() const 689 689 { 690 return fz::to_wstring (m_pass);690 return fz::to_wstring_from_utf8(m_pass); 691 691 }