Signed-off-by: Alon Bar-Lev <[email protected]> --- src/openvpnserv/openvpnserv.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/openvpnserv/openvpnserv.c b/src/openvpnserv/openvpnserv.c index a9a9441..56f5a02 100755 --- a/src/openvpnserv/openvpnserv.c +++ b/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, ...) \ -- 1.7.3.4
