diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/net.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 5805b6ae0..646c7a561 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2009-07-01 Corinna Vinschen <corinna@vinschen.de> + * net.cc (get_xp_ifs): Fix typo in comment. + +2009-07-01 Corinna Vinschen <corinna@vinschen.de> + * fhandler.h (class fhandler_socket): Add class members and methods to store and retrieve the SO_RCVBUF and SO_SNDBUF sizes. * fhandler_socket.cc (fhandler_socket::dup): Duplicate new members. diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index 393e2a998..b76d64599 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -1766,7 +1766,7 @@ get_xp_ifs (ULONG family) if (!pap->FirstUnicastAddress) { /* FirstUnicastAddress is NULL for interfaces which are disconnected. - Fetch number of configured IPva addresses from registry and + Fetch number of configured IPv4 addresses from registry and store in an unused member of the adapter addresses structure. */ pap->Ipv6IfIndex = get_ipv4fromreg_ipcnt (pap->AdapterName); cnt += pap->Ipv6IfIndex; |