strlen: use size_t to receive the return
authorDaniel Stenberg <daniel@haxx.se>
Sat, 4 Jun 2011 18:14:38 +0000 (20:14 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 4 Jun 2011 18:14:38 +0000 (20:14 +0200)
ares_init.c
ares_options.c

index 38c3706..d80b963 100644 (file)
@@ -673,7 +673,7 @@ static int get_iphlpapi_dns_info (char *ret_buf, size_t ret_size)
       for( ; pDNSAddr != NULL ; pDNSAddr = pDNSAddr->Next )
       {
         struct sockaddr *pGenericAddr = pDNSAddr->Address.lpSockaddr;
-        int stringlen = 0;
+        size_t stringlen = 0;
 
         if( pGenericAddr->sa_family == AF_INET && left > ipv4_size )
         {
index 3979efe..5174ef2 100644 (file)
@@ -1,6 +1,6 @@
 
 /* Copyright 1998 by the Massachusetts Institute of Technology.
- * Copyright (C) 2008-2010 by Daniel Stenberg
+ * Copyright (C) 2008-2011 by Daniel Stenberg
  *
  * Permission to use, copy, modify, and distribute this
  * software and its documentation for any purpose and without
@@ -135,7 +135,7 @@ int ares_set_servers(ares_channel channel,
 int ares_set_servers_csv(ares_channel channel,
                          const char* _csv)
 {
-  int i;
+  size_t i;
   char* csv = NULL;
   char* ptr;
   char* start_host;