[master] 7e07428 neuter assert for now.

Poul-Henning Kamp phk at FreeBSD.org
Thu Jan 11 11:09:05 UTC 2018


commit 7e074289d260e64b50bc776ed5bb56a8c9e47257
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu Jan 11 11:08:00 2018 +0000

    neuter assert for now.

diff --git a/bin/varnishtest/vtc_process.c b/bin/varnishtest/vtc_process.c
index 86d4708..f31bbd6 100644
--- a/bin/varnishtest/vtc_process.c
+++ b/bin/varnishtest/vtc_process.c
@@ -313,7 +313,7 @@ process_init_term(int fd)
 	memset(&ws, 0, sizeof ws);
 	ws.ws_row = 24;
 	ws.ws_col = 80;
-	AZ(ioctl(fd, TIOCSWINSZ, &ws));
+	(void)(ioctl(fd, TIOCSWINSZ, &ws));	// assert fails ?
 
 	memset(&tt, 0, sizeof tt);
 	tt.c_cflag = CREAD | CS8 | HUPCL;


More information about the varnish-commit mailing list