From 527bf549959ae9c8b8e240cf93d18fb60c4772dc Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Sat, 3 Jun 2000 05:38:29 +0000 Subject: [PATCH] s/u_int32_t/isc_uint32_t/g --- lib/isc/unix/entropy.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/isc/unix/entropy.c b/lib/isc/unix/entropy.c index b146487b01..f17e0d3d68 100644 --- a/lib/isc/unix/entropy.c +++ b/lib/isc/unix/entropy.c @@ -52,20 +52,20 @@ #define RND_EVENTQSIZE 128 typedef struct { - u_int32_t cursor; /* current add point in the pool */ - u_int32_t entropy; /* current entropy estimate in bits */ - u_int32_t rotate; /* how many bits to rotate by */ - u_int32_t pool[RND_POOLWORDS]; /* random pool data */ + isc_uint32_t cursor; /* current add point in the pool */ + isc_uint32_t entropy; /* current entropy estimate in bits */ + isc_uint32_t rotate; /* how many bits to rotate by */ + isc_uint32_t pool[RND_POOLWORDS]; /* random pool data */ } isc_rndpool_t; typedef struct { char name[16]; /* device name */ - u_int32_t last_time; /* last time recorded */ - u_int32_t last_delta; /* last delta value */ - u_int32_t last_delta2; /* last delta2 value */ - u_int32_t total; /* entropy from this source */ - u_int32_t type; /* type */ - u_int32_t flags; /* flags */ + isc_uint32_t last_time; /* last time recorded */ + isc_uint32_t last_delta; /* last delta value */ + isc_uint32_t last_delta2; /* last delta2 value */ + isc_uint32_t total; /* entropy from this source */ + isc_uint32_t type; /* type */ + isc_uint32_t flags; /* flags */ void *state; /* state informaiton */ } isc_rndsource_t;