From 58bfaaa75634f36dbea233f9af6b88836fcf1f0c Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Tue, 16 Mar 1999 00:51:11 +0000 Subject: [PATCH] In class structure, - call spawn/submatch expression submatch - add spawning flag to indicate whether or not to spawn. --- includes/dhcpd.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/dhcpd.h b/includes/dhcpd.h index c552b2ab..4966cf37 100644 --- a/includes/dhcpd.h +++ b/includes/dhcpd.h @@ -487,8 +487,9 @@ struct class { struct expression *expr; /* Expression used to compute subclass identifiers for spawning - and subsequent matching. */ - struct expression *spawn; + and to do subclass matching. */ + struct expression *submatch; + int spawning; struct group *group;