* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: dnssec-signzone.c,v 1.207 2008/09/24 02:46:21 marka Exp $ */
+/* $Id: dnssec-signzone.c,v 1.208 2008/09/26 01:27:08 marka Exp $ */
/*! \file */
/*
* Skip initial speculative wild card hashs.
*/
- while (entries > 0 && next[l->length-1] != 0) {
+ while (entries > 0U && next[l->length-1] != 0U) {
next += l->length;
entries--;
}
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: nsec3.c,v 1.4 2008/09/25 04:02:38 tbox Exp $ */
+/* $Id: nsec3.c,v 1.5 2008/09/26 01:24:55 marka Exp $ */
#include <config.h>
dns_rdatasetiter_t *rdsiter;
unsigned char *p;
- REQUIRE(salt_length < 256);
- REQUIRE(hash_length < 256);
+ REQUIRE(salt_length < 256U);
+ REQUIRE(hash_length < 256U);
REQUIRE(flags <= 0xffU);
REQUIRE(hashalg <= 0xffU);
REQUIRE(iterations <= 0xffffU);
/* hash the node name */
len = isc_iterated_hash(rethash, hashalg, iterations, salt, saltlength,
downcased->ndata, downcased->length);
- if (len == 0)
+ if (len == 0U)
return (DNS_R_BADALG);
if (hash_length != NULL)