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

ovpnagent/win: add Visual Studio project files

Signed-off-by: Lev Stipakov <lev@openvpn.net>
This commit is contained in:
Lev Stipakov 2019-06-19 16:21:06 +03:00
parent 586e8cc8a8
commit de5662221c
No known key found for this signature in database
GPG Key ID: 88670BE258B9C258

View File

@ -10,7 +10,7 @@
#define OPENVPN_CLIENT_WIN_AGENTCONFIG_H
// OVPNAGENT_NAME can be passed on build command line.
// Customized agent name is needed with purpose to install
// Customized agent name is needed with purpose to install
// few app with agents on one OS (e.g OC 3.0 and PT)
#ifdef OVPNAGENT_NAME
#define OVPNAGENT_NAME_STRING OPENVPN_STRINGIZE(OVPNAGENT_NAME)
@ -33,7 +33,11 @@ namespace openvpn {
static bool valid_pipe(const std::string& client_exe,
const std::string& server_exe)
{
#ifdef OVPNAGENT_DISABLE_PATH_CHECK
return true;
#else
return normalize_exe_path(client_exe) == normalize_exe_path(server_exe);
#endif
}
private: