From 5cb057f6453236454a2333fdd588a18f93251e3d Mon Sep 17 00:00:00 2001 From: zolliker Date: Thu, 16 Oct 2008 13:54:02 +0000 Subject: [PATCH] - changed select calls to newly indroduced uselect --- sinqhttpprot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sinqhttpprot.c b/sinqhttpprot.c index 8490ff0..e55b0ae 100644 --- a/sinqhttpprot.c +++ b/sinqhttpprot.c @@ -13,6 +13,7 @@ #include #include #include +#include "uselect.h" /*---------------------------------------------------------------------*/ typedef struct { ghttp_request *request; @@ -130,7 +131,7 @@ static int HttpHandler(Ascon *a) { socke = ghttp_get_socket(pHttp->request); FD_ZERO(&rmask); FD_SET(socke,&rmask); - selStat = select(socke+1,&rmask, NULL, NULL, &tmo); + selStat = uselect(socke+1,&rmask, NULL, NULL, &tmo); if(selStat != 0){ status = ghttp_process(pHttp->request); a->state = AsconReading;