xref: /trueos/contrib/ipfilter/lib/printifname.c (revision d5d1038c7e8fb81fcbf4d3e4d444d685e4af1e4b)
1 /*	$FreeBSD$	*/
2 
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * $Id$
9  */
10 
11 #include "ipf.h"
12 
13 
14 void
printifname(format,name,ifp)15 printifname(format, name, ifp)
16 	char *format, *name;
17 	void *ifp;
18 {
19 	PRINTF("%s%s", format, name);
20 	if ((ifp == NULL) && strcmp(name, "-") && strcmp(name, "*"))
21 		PRINTF("(!)");
22 }
23