summaryrefslogtreecommitdiff
path: root/src/openvpn/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvpn/common.h')
-rw-r--r--src/openvpn/common.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/openvpn/common.h b/src/openvpn/common.h
index 1134101..cd988d4 100644
--- a/src/openvpn/common.h
+++ b/src/openvpn/common.h
@@ -5,7 +5,7 @@
* packet encryption, packet authentication, and
* packet compression.
*
- * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
+ * Copyright (C) 2002-2017 OpenVPN Technologies, Inc. <sales@openvpn.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
@@ -29,15 +29,15 @@
* Statistics counters and associated printf formats.
*/
#ifdef USE_64_BIT_COUNTERS
- typedef unsigned long long int counter_type;
-# ifdef _WIN32
-# define counter_format "%I64u"
-# else
-# define counter_format "%llu"
-# endif
+typedef unsigned long long int counter_type;
+#ifdef _WIN32
+#define counter_format "%I64u"
#else
- typedef unsigned int counter_type;
-# define counter_format "%u"
+#define counter_format "%llu"
+#endif
+#else /* ifdef USE_64_BIT_COUNTERS */
+typedef unsigned int counter_type;
+#define counter_format "%u"
#endif
/*
@@ -102,4 +102,4 @@ typedef unsigned long ptr_type;
*/
#define SCRIPT_SECURITY_WARNING "WARNING: External program may not be called unless '--script-security 2' or higher is enabled. See --help text or man page for detailed info."
-#endif
+#endif /* ifndef COMMON_H */