From d2b70008fe89b1a5113380fa695046e672a542e4 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 21 Oct 2013 18:16:28 +0000 Subject: No need for volatile here. pointed out by deraadt@ --- usr.sbin/slowcgi/slowcgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/slowcgi') diff --git a/usr.sbin/slowcgi/slowcgi.c b/usr.sbin/slowcgi/slowcgi.c index 6f9bb3ecb94..a7122dba9b0 100644 --- a/usr.sbin/slowcgi/slowcgi.c +++ b/usr.sbin/slowcgi/slowcgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: slowcgi.c,v 1.20 2013/10/20 16:47:24 deraadt Exp $ */ +/* $OpenBSD: slowcgi.c,v 1.21 2013/10/21 18:16:28 florian Exp $ */ /* * Copyright (c) 2013 David Gwynne * Copyright (c) 2013 Florian Obser @@ -70,7 +70,7 @@ #define FD_RESERVE 5 #define FD_NEEDED 6 -volatile int cgi_inflight = 0; +int cgi_inflight = 0; struct listener { struct event ev, pause; -- cgit v1.2.3-59-g8ed1b