fix compiler warning

This commit is contained in:
Yang Tse 2008-10-17 19:04:53 +00:00
parent 07c3aaeea1
commit 63397e380f
2 changed files with 6 additions and 4 deletions

View File

@ -523,7 +523,8 @@ static int is_addr(char *str, char **end)
{
int a0, a1, a2, a3, num, rc = 0, length = 0;
if ((num = sscanf(str,"%3d.%3d.%3d.%3d%n",&a0,&a1,&a2,&a3,&length)) == 4 &&
num = sscanf(str,"%3d.%3d.%3d.%3d%n",&a0,&a1,&a2,&a3,&length);
if( (num == 4) &&
BYTE_OK(a0) && BYTE_OK(a1) && BYTE_OK(a2) && BYTE_OK(a3) &&
length >= (3+4))
{
@ -583,8 +584,8 @@ static void find_country_from_cname(const char *cname, struct in_addr addr)
if (ver_1)
{
ccode_A2[0] = tolower(cname[2]);
ccode_A2[1] = tolower(cname[3]);
ccode_A2[0] = (char)tolower(cname[2]);
ccode_A2[1] = (char)tolower(cname[3]);
ccode_A2[2] = '\0';
}
else

View File

@ -57,6 +57,7 @@
#include "ares.h"
#include "ares_dns.h"
#include "inet_ntop.h"
#include "inet_net_pton.h"
#include "ares_getopt.h"
#ifndef HAVE_STRDUP
@ -213,7 +214,7 @@ int main(int argc, char **argv)
case 's':
/* Add a server, and specify servers in the option mask. */
if (inet_pton(AF_INET, optarg, &inaddr) <= 0)
if (ares_inet_pton(AF_INET, optarg, &inaddr) <= 0)
{
hostent = gethostbyname(optarg);
if (!hostent || hostent->h_addrtype != AF_INET)