diff options
author | 2017-04-07 08:48:30 +0000 | |
---|---|---|
committer | 2017-04-07 08:48:30 +0000 | |
commit | 328022f5dd1695d16559cb26521da465bdeaca6c (patch) | |
tree | 3399a3f00e862234c293373badb13895b9731838 | |
parent | si_addr should be of type void *, not char * (diff) | |
download | wireguard-openbsd-328022f5dd1695d16559cb26521da465bdeaca6c.tar.xz wireguard-openbsd-328022f5dd1695d16559cb26521da465bdeaca6c.zip |
Use uint8_t instead of u_int8_t - for consistency and to make things easier
for portable.
From Raphael Hittich.
-rw-r--r-- | lib/libtls/tls_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtls/tls_internal.h b/lib/libtls/tls_internal.h index 5bbcadf8043..7bbc14ca860 100644 --- a/lib/libtls/tls_internal.h +++ b/lib/libtls/tls_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_internal.h,v 1.55 2017/04/05 03:19:22 beck Exp $ */ +/* $OpenBSD: tls_internal.h,v 1.56 2017/04/07 08:48:30 jsing Exp $ */ /* * Copyright (c) 2014 Jeremie Courreges-Anglas <jca@openbsd.org> * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> @@ -110,7 +110,7 @@ struct tls_conninfo { char *issuer; char *subject; - u_int8_t *peer_cert; + uint8_t *peer_cert; size_t peer_cert_len; time_t notbefore; |