From: Ted Lemon Date: Tue, 28 Nov 2000 23:18:40 +0000 (+0000) Subject: Add printer for client-state. X-Git-Tag: V3-BETA-1-PATCH-11~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d531e7fd2ae67cbfb1b24b9193782473ae73315;p=thirdparty%2Fdhcp.git Add printer for client-state. --- diff --git a/common/print.c b/common/print.c index 3461c0cce..beab2a780 100644 --- a/common/print.c +++ b/common/print.c @@ -43,7 +43,7 @@ #ifndef lint static char copyright[] = -"$Id: print.c,v 1.45 2000/10/12 08:59:07 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: print.c,v 1.46 2000/11/28 23:18:40 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -695,6 +695,10 @@ static unsigned print_subexpression (expr, buf, len) s = "leased-address"; goto astring; + case expr_client_state: + s = "client-state"; + goto astring; + case expr_host_decl_name: s = "host-decl-name"; goto astring;