Move /var/svc/log to /var/log/svc
[unleashed/lotheac.git] / usr / src / cmd / ipf / lib / common / printifname.c
blobfca2c99b70f9c8d5b33d450b7bdab87dc54d3a34
1 /*
2 * Copyright (C) 1993-2001 by Darren Reed.
4 * See the IPFILTER.LICENCE file for details on licencing.
6 * $Id: printifname.c,v 1.2 2002/01/28 06:50:47 darrenr Exp $
8 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
9 * Use is subject to license terms.
12 #pragma ident "%Z%%M% %I% %E% SMI"
14 #include "ipf.h"
16 void printifname(format, name, ifp)
17 char *format, *name;
18 void *ifp;
20 printf("%s%s", format, name);
21 if (opts & OPT_UNDEF) {
22 if ((ifp == NULL) && strcmp(name, "-") && strcmp(name, "*")) {
23 printf("(!)");