Skip to content
This repository has been archived by the owner on Jul 30, 2021. It is now read-only.

Commit

Permalink
Use POLLIN instead of POLLRDNORM
Browse files Browse the repository at this point in the history
git-svn-id: http://www.varnish-cache.org/svn/trunk@2720 d4fa192b-c00b-0410-8231-f00ffab90ce4
  • Loading branch information
bsdphk committed Jun 17, 2008
1 parent 5c1de34 commit 16422eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/varnishtest/vtc_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 16422eb

Please sign in to comment.