Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Mar 2006 21:16:16 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 94130 for review
Message-ID:  <200603272116.k2RLGGkZ055555@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=94130

Change 94130 by rwatson@rwatson_zoo on 2006/03/27 21:15:19

	Don't mask global 'debug' variable with uninitialized local one.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.c#2 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.c#2 (text+ko) ====

@@ -25,7 +25,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.c#1 $
+ * $P4: //depot/projects/trustedbsd/openbsm/bin/auditfilterd/auditfilterd.c#2 $
  */
 
 #include <sys/queue.h>
@@ -169,7 +169,7 @@
 	const char *conffile;
 	FILE *trail_fp;
 	FILE *conf_fp;
-	int ch, debug;
+	int ch;
 
 	conffile = AUDITFILTERD_CONFFILE;
 	trailfile = AUDITFILTERD_TRAILFILE;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603272116.k2RLGGkZ055555>