From: Alexandr Kutashov <[email protected]> It's better to have distinct enums for more straightforward debug of exit function.
Signed-off-by: Alexandr Kutashov <[email protected]> --- src/openvpn/error.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openvpn/error.h b/src/openvpn/error.h index 89adb3e6..6289c0d8 100644 --- a/src/openvpn/error.h +++ b/src/openvpn/error.h @@ -58,8 +58,8 @@ struct gc_arena; #define OPENVPN_EXIT_STATUS_GOOD 0 #define OPENVPN_EXIT_STATUS_ERROR 1 -#define OPENVPN_EXIT_STATUS_USAGE 1 -#define OPENVPN_EXIT_STATUS_CANNOT_OPEN_DEBUG_FILE 1 +#define OPENVPN_EXIT_STATUS_USAGE 2 +#define OPENVPN_EXIT_STATUS_CANNOT_OPEN_DEBUG_FILE 3 /* * Special command line debugging mode. -- 2.35.1 _______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
