summaryrefslogtreecommitdiff
path: root/src/openvpn/basic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvpn/basic.h')
-rw-r--r--src/openvpn/basic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvpn/basic.h b/src/openvpn/basic.h
index 298cf10..48d4d9b 100644
--- a/src/openvpn/basic.h
+++ b/src/openvpn/basic.h
@@ -30,7 +30,7 @@
/* size of an array */
#define SIZE(x) (sizeof(x)/sizeof(x[0]))
-/* clear an object */
+/* clear an object (may be optimized away, use secure_memzero() to erase secrets) */
#define CLEAR(x) memset(&(x), 0, sizeof(x))
#define IPV4_NETMASK_HOST 0xffffffffU