mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
19 lines
307 B
C
19 lines
307 B
C
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "ipf.h"
|
|
|
|
|
|
void
|
|
printifname(char *format, char *name, void *ifp)
|
|
{
|
|
PRINTF("%s%s", format, name);
|
|
if ((ifp == NULL) && strcmp(name, "-") && strcmp(name, "*"))
|
|
PRINTF("(!)");
|
|
}
|