From: jsing Date: Fri, 7 Apr 2017 08:48:30 +0000 (+0000) Subject: Use uint8_t instead of u_int8_t - for consistency and to make things easier X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=328022f5dd1695d16559cb26521da465bdeaca6c;p=openbsd Use uint8_t instead of u_int8_t - for consistency and to make things easier for portable. From Raphael Hittich. --- 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 * Copyright (c) 2014 Joel Sing @@ -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;