2007-04-15 00:17:19 +04:00
|
|
|
/* $NetBSD: verbose.c,v 1.1.1.2 2007/04/14 20:17:31 martin Exp $ */
|
2004-03-28 12:55:20 +04:00
|
|
|
|
|
|
|
/*
|
2007-04-15 00:17:19 +04:00
|
|
|
* Copyright (C) 2000-2001 by Darren Reed.
|
2004-03-28 12:55:20 +04:00
|
|
|
*
|
|
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
|
|
*
|
2007-04-15 00:17:19 +04:00
|
|
|
* Id: verbose.c,v 1.6.4.1 2006/06/16 17:21:18 darrenr Exp
|
2004-03-28 12:55:20 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__STDC__)
|
|
|
|
# include <stdarg.h>
|
|
|
|
#else
|
|
|
|
# include <varargs.h>
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ipt.h"
|
|
|
|
#include "opts.h"
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(__STDC__)
|
|
|
|
void verbose(char *fmt, ...)
|
|
|
|
#else
|
|
|
|
void verbose(fmt, va_alist)
|
|
|
|
char *fmt;
|
|
|
|
va_dcl
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
va_list pvar;
|
|
|
|
|
|
|
|
va_start(pvar, fmt);
|
|
|
|
|
|
|
|
if (opts & OPT_VERBOSE)
|
|
|
|
vprintf(fmt, pvar);
|
|
|
|
va_end(pvar);
|
|
|
|
}
|