Commit f032f768 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use POLLIN instead of POLLRDNORM



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2720 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent bab178a6
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment