diff options
author | Internet Software Consortium, Inc <@isc.org> | 2007-09-07 14:14:31 -0600 |
---|---|---|
committer | LaMont Jones <lamont@debian.org> | 2007-09-07 14:14:31 -0600 |
commit | 827006a436e7babc39b4b5b52797aa54313f5be6 (patch) | |
tree | 897f21a87e0eb0131628e6c39691789563ee78d7 /lib/isc/entropy.c | |
parent | ad2d173ed9521052e7fd8ba2cd10117cdea6f058 (diff) | |
download | bind9-827006a436e7babc39b4b5b52797aa54313f5be6.tar.gz |
9.2.3rc1
Diffstat (limited to 'lib/isc/entropy.c')
-rw-r--r-- | lib/isc/entropy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/isc/entropy.c b/lib/isc/entropy.c index d046e3e7..3f9ec233 100644 --- a/lib/isc/entropy.c +++ b/lib/isc/entropy.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: entropy.c,v 1.3.2.1 2001/09/06 00:14:17 gson Exp $ */ +/* $Id: entropy.c,v 1.3.2.2 2003/07/23 06:57:53 marka Exp $ */ /* * This is the system independent part of the entropy module. It is @@ -303,7 +303,7 @@ entropypool_adddata(isc_entropy_t *ent, void *p, unsigned int len, addr = (unsigned long)p; buf = p; - if ((addr & 0x03) != 0) { + if ((addr & 0x03U) != 0U) { val = 0; switch (len) { case 3: |