am db42a9f5
: Merge "Fix three clang complaints about the DNS code."
* commit 'db42a9f5a3b8a6bb6af2d9ef42844c8dc835527b': Fix three clang complaints about the DNS code.
This commit is contained in:
commit
d5a6a5e18d
3 changed files with 2 additions and 5 deletions
|
@ -90,7 +90,7 @@
|
|||
// This should be synchronized to ResponseCode.h
|
||||
static const int DnsProxyQueryResult = 222;
|
||||
|
||||
static const char const AskedForGot[] =
|
||||
static const char AskedForGot[] =
|
||||
"gethostby*.getanswer: asked for \"%s\", got \"%s\"";
|
||||
|
||||
#define MAXPACKET (64*1024)
|
||||
|
|
|
@ -1277,8 +1277,6 @@ Aerror(const res_state statp, FILE *file, const char *string, int error,
|
|||
char hbuf[NI_MAXHOST];
|
||||
char sbuf[NI_MAXSERV];
|
||||
|
||||
alen = alen;
|
||||
|
||||
if ((statp->options & RES_DEBUG) != 0U) {
|
||||
if (getnameinfo(address, (socklen_t)alen, hbuf, sizeof(hbuf),
|
||||
sbuf, sizeof(sbuf), niflags)) {
|
||||
|
|
|
@ -211,10 +211,9 @@ __res_get_state(void)
|
|||
}
|
||||
|
||||
void
|
||||
__res_put_state(res_state res)
|
||||
__res_put_state(res_state res __unused)
|
||||
{
|
||||
/* nothing to do */
|
||||
res=res;
|
||||
}
|
||||
|
||||
res_static
|
||||
|
|
Loading…
Reference in a new issue