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

Don't check return value of curs_set(), appearantly the old SVID bug

is still on the loose.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4951 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 7412de43
......@@ -141,7 +141,7 @@ do_curses(struct VSM_data *vd, const struct vsc_main *VSL_stats,
AC(noecho());
AC(nonl());
AC(intrflush(stdscr, FALSE));
AC(curs_set(0));
(void)curs_set(0); /* XXX: too many implementations are bogus */
while (1) {
/*
......
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