diff options
author | David Caldwell <david@porkrind.org> | 2017-04-05 11:15:45 -0700 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-04-06 12:36:22 +0200 |
commit | 5659d09e3760c8d1986ba9852204c6942bc7d510 (patch) | |
tree | ea67100eb682f623c2c5e7b798fd10f7153892a1 /lib/gnutls_int.h | |
parent | 27a049382d20359dc1689d826b7975f47f6d988e (diff) | |
download | gnutls-5659d09e3760c8d1986ba9852204c6942bc7d510.tar.gz |
Rename uint64 to gnutls_uint64 to avoid conflict with macOS
Signed-off-by: David Caldwell <david@porkrind.org>
Diffstat (limited to 'lib/gnutls_int.h')
-rw-r--r-- | lib/gnutls_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h index f8b27612e4..0aff2d28d5 100644 --- a/lib/gnutls_int.h +++ b/lib/gnutls_int.h @@ -88,7 +88,7 @@ typedef int ssize_t; */ typedef struct { unsigned char i[8]; -} uint64; +} gnutls_uint64; #include <gnutls/gnutls.h> #include <gnutls/dtls.h> @@ -346,7 +346,7 @@ typedef struct mbuffer_st { content_type_t type; /* record layer sequence */ - uint64 record_sequence; + gnutls_uint64 record_sequence; /* Filled in by handshake layer on send: * type, epoch, htype, handshake_sequence @@ -597,7 +597,7 @@ struct record_state_st { gnutls_datum_t key; auth_cipher_hd_st cipher_state; comp_hd_st compression_state; - uint64 sequence_number; + gnutls_uint64 sequence_number; }; |