summaryrefslogtreecommitdiffstats
path: root/src/openvpn/openvpn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvpn/openvpn.h')
-rw-r--r--src/openvpn/openvpn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvpn/openvpn.h b/src/openvpn/openvpn.h
index ef7ca1d..1c2a80b 100644
--- a/src/openvpn/openvpn.h
+++ b/src/openvpn/openvpn.h
@@ -199,7 +199,7 @@ struct context_1
#endif
/* if client mode, hash of option strings we pulled from server */
- uint8_t pulled_options_digest_save[MD5_DIGEST_LENGTH];
+ struct md5_digest pulled_options_digest_save;
/**< Hash of option strings received from the
* remote OpenVPN server. Only used in
* client-mode. */
@@ -465,7 +465,7 @@ struct context_2
/* hash of pulled options, so we can compare when options change */
bool pulled_options_md5_init_done;
md_ctx_t pulled_options_state;
- uint8_t pulled_options_digest[MD5_DIGEST_LENGTH];
+ struct md5_digest pulled_options_digest;
struct event_timeout server_poll_interval;