From 3a2bbdb05ca6a6996e424c9fb225cb0d53804125 Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Iniesta Date: Tue, 27 Dec 2016 18:25:47 +0100 Subject: New upstream version 2.4.0 --- tests/unit_tests/openvpn/mock_msg.c | 59 +++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 26 deletions(-) (limited to 'tests/unit_tests/openvpn/mock_msg.c') diff --git a/tests/unit_tests/openvpn/mock_msg.c b/tests/unit_tests/openvpn/mock_msg.c index 54b6017..eb0d5e9 100644 --- a/tests/unit_tests/openvpn/mock_msg.c +++ b/tests/unit_tests/openvpn/mock_msg.c @@ -5,7 +5,7 @@ * packet encryption, packet authentication, and * packet compression. * - * Copyright (C) 2016 Fox Crypto B.V. + * Copyright (C) 2016-2017 Fox Crypto B.V. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 @@ -39,39 +39,46 @@ unsigned int x_debug_level = 0; /* Default to (almost) no debugging output */ bool fatal_error_triggered = false; -void mock_set_debug_level(int level) +void +mock_set_debug_level(int level) { - x_debug_level = level; + x_debug_level = level; } -void x_msg_va (const unsigned int flags, const char *format, - va_list arglist) +void +x_msg_va(const unsigned int flags, const char *format, + va_list arglist) { - if (flags & M_FATAL) + if (flags & M_FATAL) { - fatal_error_triggered = true; - printf("FATAL ERROR:"); + fatal_error_triggered = true; + printf("FATAL ERROR:"); } - vprintf(format, arglist); - printf("\n"); + vprintf(format, arglist); + printf("\n"); } -void x_msg (const unsigned int flags, const char *format, ...) +void +x_msg(const unsigned int flags, const char *format, ...) { - va_list arglist; - va_start (arglist, format); - x_msg_va (flags, format, arglist); - va_end (arglist); + va_list arglist; + va_start(arglist, format); + x_msg_va(flags, format, arglist); + va_end(arglist); } void -assert_failed (const char *filename, int line, const char *condition) +assert_failed(const char *filename, int line, const char *condition) { - if (condition) - printf ("Assertion failed at %s:%d (%s)", filename, line, condition); - else - printf ("Assertion failed at %s:%d", filename, line); - exit (1); + if (condition) + { + printf("Assertion failed at %s:%d (%s)", filename, line, condition); + } + else + { + printf("Assertion failed at %s:%d", filename, line); + } + exit(1); } /* @@ -79,14 +86,14 @@ assert_failed (const char *filename, int line, const char *condition) * to allocate memory as part of its operation. */ void -out_of_memory (void) +out_of_memory(void) { - fprintf (stderr, "Out of Memory\n"); - exit (1); + fprintf(stderr, "Out of Memory\n"); + exit(1); } bool -dont_mute (unsigned int flags) +dont_mute(unsigned int flags) { - return true; + return true; } -- cgit v1.2.3