From ea225b8f32da2d8571a01ff8cd937b0495a6cc30 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 29 Apr 2003 20:46:14 +0000 Subject: [PATCH] AES code shouldn't define uint32_t etc if the system provides them Use inttypes.h if available. ticket: new status: open target_version: 1.3 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15383 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/aes/ChangeLog | 4 ++++ src/lib/crypto/aes/uitypes.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/crypto/aes/ChangeLog b/src/lib/crypto/aes/ChangeLog index 3af490304..d740ffd6b 100644 --- a/src/lib/crypto/aes/ChangeLog +++ b/src/lib/crypto/aes/ChangeLog @@ -1,3 +1,7 @@ +2003-04-29 Ken Raeburn + + * uitypes.h: Use inttypes.h if HAVE_INTTYPES_H is defined. + 2003-04-13 Ken Raeburn * aes_s2k.c (krb5int_aes_string_to_key): Return an error if the diff --git a/src/lib/crypto/aes/uitypes.h b/src/lib/crypto/aes/uitypes.h index 4e50ef7df..02dd3b072 100644 --- a/src/lib/crypto/aes/uitypes.h +++ b/src/lib/crypto/aes/uitypes.h @@ -44,7 +44,7 @@ #endif #endif -#if defined HAS_INTTYPES_H +#if defined HAS_INTTYPES_H || defined HAVE_INTTYPES_H #include #define s_u32 u #define s_u64 ull -- 2.26.2