diff options
author | Ted Lemon <source@isc.org> | 1996-12-31 02:02:54 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1996-12-31 02:02:54 +0000 |
commit | b289b0107c3ef496c7b94f6dd58ba9e48cc484c1 (patch) | |
tree | a559d6fb741f642a9bc583dfc6b3fcdfe17be8cc /server | |
parent | f4d0f440ce3b5808b16f04b23002a6c65f3870cf (diff) | |
download | isc-dhcp-b289b0107c3ef496c7b94f6dd58ba9e48cc484c1.tar.gz |
Fix bug in classing code
Diffstat (limited to 'server')
-rw-r--r-- | server/dhcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/dhcp.c b/server/dhcp.c index fc5e2e1a..a78e643c 100644 --- a/server/dhcp.c +++ b/server/dhcp.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dhcp.c,v 1.34 1996/09/11 05:52:18 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dhcp.c,v 1.35 1996/12/31 02:02:17 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -492,7 +492,7 @@ void ack_lease (packet, lease, offer, when) if (packet -> options [DHO_DHCP_USER_CLASS_ID].len) { user_class = - find_class (0, + find_class (1, packet -> options [DHO_DHCP_USER_CLASS_ID].data, packet -> |