141edb306SCy Schubert 241edb306SCy Schubert /* 341edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 441edb306SCy Schubert * 541edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 641edb306SCy Schubert * 741edb306SCy Schubert * $Id$ 841edb306SCy Schubert */ 941edb306SCy Schubert 1041edb306SCy Schubert #include "ipf.h" 1141edb306SCy Schubert 1241edb306SCy Schubert 1341edb306SCy Schubert void printifname(char * format,char * name,void * ifp)14*efeb8bffSCy Schubertprintifname(char *format, char *name, void *ifp) 1541edb306SCy Schubert { 1641edb306SCy Schubert PRINTF("%s%s", format, name); 1741edb306SCy Schubert if ((ifp == NULL) && strcmp(name, "-") && strcmp(name, "*")) 1841edb306SCy Schubert PRINTF("(!)"); 1941edb306SCy Schubert } 20