2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

fix warnings from iOS build of dig

This commit is contained in:
Ray Bellis
2017-07-04 11:51:36 +01:00
parent f7a22ae512
commit 03a4e4381e

View File

@@ -445,7 +445,7 @@ hex_dump(isc_buffer_t *b) {
* ISC_R_NOSPACE if that would advance p past 'end'.
*/
static isc_result_t
append(const char *text, int len, char **p, char *end) {
append(const char *text, size_t len, char **p, char *end) {
if (len > end - *p)
return (ISC_R_NOSPACE);
memmove(*p, text, len);
@@ -456,7 +456,7 @@ append(const char *text, int len, char **p, char *end) {
static isc_result_t
reverse_octets(const char *in, char **p, char *end) {
const char *dot = strchr(in, '.');
int len;
size_t len;
if (dot != NULL) {
isc_result_t result;
result = reverse_octets(dot + 1, p, end);