0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00

URL::parm : trivial fix to return std::string instead of

const std::string.
This commit is contained in:
James Yonan 2016-08-17 11:34:16 -07:00
parent b88fc41c7b
commit f3ed986525

View File

@ -92,7 +92,7 @@ namespace openvpn {
return nullptr;
}
const std::string get_value(const std::string& key) const
std::string get_value(const std::string& key) const
{
const Parm* p = get(key);
if (p)