22 lines
451 B
C
22 lines
451 B
C
# include "../hdr/defines.h"
|
|
|
|
SCCSID(@(#)doie.c 1.1 94/10/31 SMI); /* from System III 5.1 */
|
|
|
|
doie(pkt,ilist,elist,glist)
|
|
struct packet *pkt;
|
|
char *ilist, *elist, *glist;
|
|
{
|
|
if (ilist) {
|
|
if (pkt->p_verbose & DOLIST)
|
|
fprintf(pkt->p_stdout,"Included:\n");
|
|
dolist(pkt,ilist,INCLUDE);
|
|
}
|
|
if (elist) {
|
|
if (pkt->p_verbose & DOLIST)
|
|
fprintf(pkt->p_stdout,"Excluded:\n");
|
|
dolist(pkt,elist,EXCLUDE);
|
|
}
|
|
if (glist)
|
|
dolist(pkt,glist,IGNORE);
|
|
}
|