From 7a2c0a0d6bec344172130ecdcfb3b40bbcca4873 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Tue, 10 Jun 2008 17:24:00 +0000 Subject: * fhandler_procnet.cc (format_procnet_ifinet6): Use sprintf rather than __small_sprintf. * net.cc (if_nametoindex): Prefer IPv6IfIndex over IfIndex for consistency with /proc/net/if_inet6. (if_indextoname): Ditto. (if_nameindex): Ditto. --- winsup/cygwin/fhandler_procnet.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'winsup/cygwin/fhandler_procnet.cc') diff --git a/winsup/cygwin/fhandler_procnet.cc b/winsup/cygwin/fhandler_procnet.cc index 82c5f0a84..f9fd94707 100644 --- a/winsup/cygwin/fhandler_procnet.cc +++ b/winsup/cygwin/fhandler_procnet.cc @@ -260,14 +260,14 @@ format_procnet_ifinet6 (char *&filebuf) filesize += sprintf (filebuf + filesize, "%04x", ntohs (sin6->sin6_addr.s6_addr16[i])); filebuf[filesize++] = ' '; - filesize += __small_sprintf (filebuf + filesize, - "%02x %02x %02x %02x %s\n", - pap->IfIndex ?: pap->Ipv6IfIndex, - ip_addr_prefix (pua, pap->FirstPrefix), - ((struct sockaddr_in6 *) - pua->Address.lpSockaddr)->sin6_scope_id, - pua->DadState, - pap->AdapterName); + filesize += sprintf (filebuf + filesize, + "%02lx %02x %02x %02x %s\n", + pap->IfIndex ?: pap->Ipv6IfIndex, + ip_addr_prefix (pua, pap->FirstPrefix), + ((struct sockaddr_in6 *) + pua->Address.lpSockaddr)->sin6_scope_id, + pua->DadState, + pap->AdapterName); } out: -- cgit v1.2.3