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

In splitlines.hpp, rename S_OK to S_OKAY due to Windows symbol

conflict.
This commit is contained in:
James Yonan 2015-09-23 23:11:55 -07:00
parent a9ed9d47f2
commit 415dc9067b

View File

@ -79,7 +79,7 @@ namespace openvpn {
}
enum Status {
S_OK,
S_OKAY,
S_EOF,
S_ERROR
};
@ -92,7 +92,7 @@ namespace openvpn {
if (overflow)
return S_ERROR;
ln = line;
return S_OK;
return S_OKAY;
}
private: