r2720 - trunk/varnish-cache/bin/varnishtest

phk at projects.linpro.no phk at projects.linpro.no
Tue Jun 17 10:57:47 CEST 2008


Author: phk
Date: 2008-06-17 10:57:46 +0200 (Tue, 17 Jun 2008)
New Revision: 2720

Modified:
   trunk/varnish-cache/bin/varnishtest/vtc_http.c
Log:
Use POLLIN instead of POLLRDNORM



Modified: trunk/varnish-cache/bin/varnishtest/vtc_http.c
===================================================================
--- trunk/varnish-cache/bin/varnishtest/vtc_http.c	2008-06-17 08:18:42 UTC (rev 2719)
+++ trunk/varnish-cache/bin/varnishtest/vtc_http.c	2008-06-17 08:57:46 UTC (rev 2720)
@@ -234,7 +234,7 @@
 	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);




More information about the varnish-commit mailing list