]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix typo in net.c -- s/closeocket/closesocket/
authorEvan Hunt <each@isc.org>
Wed, 23 Sep 2009 00:47:30 +0000 (00:47 +0000)
committerEvan Hunt <each@isc.org>
Wed, 23 Sep 2009 00:47:30 +0000 (00:47 +0000)
lib/isc/win32/net.c

index 80ab89807ea76774937def63b33051236a908acd..33b51f2d93b82303e5999a03b7f94b5447c7c97e 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: net.c,v 1.9.18.10 2008/08/08 05:15:09 marka Exp $ */
+/* $Id: net.c,v 1.9.18.11 2009/09/23 00:47:30 each Exp $ */
 
 #include <config.h>
 
@@ -197,7 +197,7 @@ try_ipv6only(void) {
        ipv6only_result = ISC_R_SUCCESS;
 
 close:
-       closeocket(s);
+       closesocket(s);
        return;
 #endif /* IPV6_V6ONLY */
 }