2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 23:15:18 +00:00

cast to unsigned

This commit is contained in:
Mark Andrews
2011-08-18 17:41:54 +00:00
parent ea559fe07b
commit 0226bd69cd

View File

@@ -31,7 +31,7 @@
/* /*
* Principal Author: Brian Wellington * Principal Author: Brian Wellington
* $Id: dst_api.c,v 1.61 2011/08/18 06:00:07 marka Exp $ * $Id: dst_api.c,v 1.62 2011/08/18 17:41:54 marka Exp $
*/ */
/*! \file */ /*! \file */
@@ -1579,7 +1579,7 @@ write_public_key(const dst_key_t *key, int type, const char *directory) {
fprintf(fp, "%d ", key->key_ttl); fprintf(fp, "%d ", key->key_ttl);
isc_buffer_usedregion(&classb, &r); isc_buffer_usedregion(&classb, &r);
if (isc_util_fwrite(r.base, 1, r.length, fp) != (int)r.length) if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
ret = DST_R_WRITEERROR; ret = DST_R_WRITEERROR;
if ((type & DST_TYPE_KEY) != 0) if ((type & DST_TYPE_KEY) != 0)
@@ -1588,7 +1588,7 @@ write_public_key(const dst_key_t *key, int type, const char *directory) {
fprintf(fp, " DNSKEY "); fprintf(fp, " DNSKEY ");
isc_buffer_usedregion(&textb, &r); isc_buffer_usedregion(&textb, &r);
if (isc_util_fwrite(r.base, 1, r.length, fp) != (int)r.length) if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
ret = DST_R_WRITEERROR; ret = DST_R_WRITEERROR;
fputc('\n', fp); fputc('\n', fp);