diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-04-07 08:48:31 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-04-07 08:48:31 +0000 |
commit | b09ed17ae1927183fbc03849682682a05f488fb3 (patch) | |
tree | 379cd3faae2bf4af1402dbc51bd114dea69d082a | |
parent | ee3821f7c67b67961d4ef1ea1f6f89b5f2f4b161 (diff) |
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; |