ares__bitncmp: use two underscores for private functions

It used a single one previously making it look like a public one
pull/10/head
Daniel Stenberg 12 years ago
parent 9c03cc118c
commit 2a3a63ae1f
  1. 6
      ares_gethostbyname.c
  2. 4
      bitncmp.c
  3. 6
      bitncmp.h

@ -460,7 +460,7 @@ static int get_address_index(const struct in_addr *addr,
} }
else else
{ {
if (!ares_bitncmp(&addr->s_addr, &sortlist[i].addrV4.s_addr, if (!ares__bitncmp(&addr->s_addr, &sortlist[i].addrV4.s_addr,
sortlist[i].mask.bits)) sortlist[i].mask.bits))
break; break;
} }
@ -508,9 +508,7 @@ static int get6_address_index(const struct ares_in6_addr *addr,
{ {
if (sortlist[i].family != AF_INET6) if (sortlist[i].family != AF_INET6)
continue; continue;
if (!ares_bitncmp(addr, if (!ares__bitncmp(addr, &sortlist[i].addrV6, sortlist[i].mask.bits))
&sortlist[i].addrV6,
sortlist[i].mask.bits))
break; break;
} }
return i; return i;

@ -33,8 +33,8 @@
* author: * author:
* Paul Vixie (ISC), June 1996 * Paul Vixie (ISC), June 1996
*/ */
int int ares__bitncmp(const void *l, const void *r, int n)
ares_bitncmp(const void *l, const void *r, int n) { {
unsigned int lb, rb; unsigned int lb, rb;
int x, b; int x, b;

@ -2,7 +2,7 @@
#define __ARES_BITNCMP_H #define __ARES_BITNCMP_H
/* Copyright (C) 2005 by Dominick Meglio /* Copyright (C) 2005, 2013 by Dominick Meglio
* *
* Permission to use, copy, modify, and distribute this * Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without * software and its documentation for any purpose and without
@ -18,9 +18,9 @@
*/ */
#ifndef HAVE_BITNCMP #ifndef HAVE_BITNCMP
int ares_bitncmp(const void *l, const void *r, int n); int ares__bitncmp(const void *l, const void *r, int n);
#else #else
#define ares_bitncmp(x,y,z) bitncmp(x,y,z) #define ares__bitncmp(x,y,z) bitncmp(x,y,z)
#endif #endif
#endif /* __ARES_BITNCMP_H */ #endif /* __ARES_BITNCMP_H */

Loading…
Cancel
Save