--------------------- PatchSet 5937 Date: 2007/10/08 18:30:00 Author: serassio Branch: squid3-ipv6 Tag: (none) Log: Fix a typo and a forgotten change Members: src/win32.cc:1.8.6.2->1.8.6.3 Index: squid3/src/win32.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/win32.cc,v retrieving revision 1.8.6.2 retrieving revision 1.8.6.3 diff -u -r1.8.6.2 -r1.8.6.3 --- squid3/src/win32.cc 7 Oct 2007 21:24:23 -0000 1.8.6.2 +++ squid3/src/win32.cc 8 Oct 2007 18:30:00 -0000 1.8.6.3 @@ -1,5 +1,5 @@ /* - * $Id: win32.cc,v 1.8.6.2 2007/10/07 21:24:23 amosjeffries Exp $ + * $Id: win32.cc,v 1.8.6.3 2007/10/08 18:30:00 serassio Exp $ * * Windows support * AUTHOR: Guido Serassio @@ -78,7 +78,7 @@ handle0 = *AI; // retrieve the new details returned by connect() - handle1.Setport(handle1.GetPort()); + handle1.SetPort(handle1.GetPort()); handle1.GetAddrInfo(AI); if (connect(handles[1], AI->ai_addr, AI->ai_addrlen) < 0 || @@ -97,7 +97,7 @@ F = &fd_table[handles[1]]; F->local_addr = default_localhost_addr; handle1.NtoA(F->ipaddr, MAX_IPSTRLEN); - F->remote_port = handle1; + F->remote_port = handle1.GetPort(); return 0; }