From 89a1512a74a8ae8b920ce52c7b0f706bf59832b8 Mon Sep 17 00:00:00 2001 From: Niels Provos Date: Thu, 15 May 2008 06:33:23 +0000 Subject: [PATCH] close -> EVUTIL_CLOSESOCKET svn:r832 --- test/regress_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress_http.c b/test/regress_http.c index b63761e7..cf46b8f8 100644 --- a/test/regress_http.c +++ b/test/regress_http.c @@ -300,7 +300,7 @@ http_basic_test(void) /* connect to the second port */ bufferevent_free(bev); - close(fd); + EVUTIL_CLOSESOCKET(fd); fd = http_connect("127.0.0.1", port + 1);