diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-01 15:33:00 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-01 15:33:00 +0200 |
commit | 3512dd8de571c8183a7e7476db30a928573d8442 (patch) | |
tree | a6e8e13bc598a4762c96312800451ddf0a8306e6 /openvpn/src/openvpnserv/openvpnserv.c | |
parent | f26bdab76d0632aa0f1489c58e9ccc28bf1c74ba (diff) |
Support strange certificate + passsword authentication types
Diffstat (limited to 'openvpn/src/openvpnserv/openvpnserv.c')
-rwxr-xr-x | openvpn/src/openvpnserv/openvpnserv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openvpn/src/openvpnserv/openvpnserv.c b/openvpn/src/openvpnserv/openvpnserv.c index a9a9441e..56f5a025 100755 --- a/openvpn/src/openvpnserv/openvpnserv.c +++ b/openvpn/src/openvpnserv/openvpnserv.c @@ -87,9 +87,9 @@ static HANDLE exit_event = NULL; /* * Message handling */ -#define M_INFO (0) // informational -#define M_SYSERR (MSG_FLAGS_ERROR|MSG_FLAGS_SYS_CODE) // error + system code -#define M_ERR (MSG_FLAGS_ERROR) // error +#define M_INFO (0) /* informational */ +#define M_SYSERR (MSG_FLAGS_ERROR|MSG_FLAGS_SYS_CODE) /* error + system code */ +#define M_ERR (MSG_FLAGS_ERROR) /* error */ /* write error to event log */ #define MSG(flags, ...) \ |