From: phk Date: Tue, 17 Jun 2008 08:57:46 +0000 (+0000) Subject: Use POLLIN instead of POLLRDNORM X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3434f914160dd19c82c6f8fefaf20d96e9fda2dd;p=varnish Use POLLIN instead of POLLRDNORM git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2720 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishtest/vtc_http.c b/varnish-cache/bin/varnishtest/vtc_http.c index 6cbe4646..80e69361 100644 --- a/varnish-cache/bin/varnishtest/vtc_http.c +++ b/varnish-cache/bin/varnishtest/vtc_http.c @@ -234,7 +234,7 @@ http_rxhdr(struct http *hp) l = 0; while (1) { pfd[0].fd = hp->fd; - pfd[0].events = POLLRDNORM; + pfd[0].events = POLLIN; pfd[0].revents = 0; i = poll(pfd, 1, hp->timeout); assert(i > 0);