X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/ae8cc9775a6eb23901a89a2604f73525b0553db8..b6be5d00050f3824940c8dd9b7cf5240e5948c15:/client/adnsheloex.c diff --git a/client/adnsheloex.c b/client/adnsheloex.c index aeb392a..a4ad542 100644 --- a/client/adnsheloex.c +++ b/client/adnsheloex.c @@ -168,7 +168,7 @@ static void proclog(FILE *inf, FILE *outf, int maxpending, int opts) { if (head->query) { if (opts & OPT_DEBUG) msg("%d in queue; checking %.*s", len, - head->rest-head->name, guard_null(head->name)); + (int)(head->rest-head->name), guard_null(head->name)); if (eof || len >= maxpending) { if (opts & OPT_POLL) err= adns_wait_poll(adns, &head->query, &answer, NULL); @@ -185,7 +185,7 @@ static void proclog(FILE *inf, FILE *outf, int maxpending, int opts) { if (answer->status == adns_s_ok) { const char *addr; int ok = 0; - fprintf(outf, "%.*s", head->rest-head->start, head->start); + fprintf(outf, "%.*s", (int)(head->rest-head->start), head->start); while(answer->nrrs--) { addr= inet_ntoa(answer->rrs.inaddr[answer->nrrs]); ok |= !strncmp(addr, head->addr, strlen(addr));