summaryrefslogtreecommitdiff
path: root/server/class.c
diff options
context:
space:
mode:
authorDamien Neil <source@isc.org>2000-08-28 19:36:39 +0000
committerDamien Neil <source@isc.org>2000-08-28 19:36:39 +0000
commit1b234d446fbc53a26b589337d895c6023af74b09 (patch)
treedb5836981a5a9d6bc935471ef2e1419a063d620e /server/class.c
parent06f0ed0687487260d7e18601a8263f817cdec9b9 (diff)
downloadisc-dhcp-1b234d446fbc53a26b589337d895c6023af74b09.tar.gz
Finished up function call support.
Diffstat (limited to 'server/class.c')
-rw-r--r--server/class.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/class.c b/server/class.c
index d02ce08d..fb1b66b6 100644
--- a/server/class.c
+++ b/server/class.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: class.c,v 1.20 2000/05/16 23:03:36 mellon Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: class.c,v 1.21 2000/08/28 19:36:09 neild Exp $ Copyright (c) 1998-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
@@ -84,7 +84,8 @@ void classification_setup ()
void classify_client (packet)
struct packet *packet;
{
- execute_statements (packet, (struct lease *)0, packet -> options,
+ execute_statements ((struct binding_value **)0,
+ packet, (struct lease *)0, packet -> options,
(struct option_state *)0, &global_scope,
default_classification_rules);
}