]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
remove lease -> state
authorTed Lemon <source@isc.org>
Wed, 5 Mar 1997 06:33:06 +0000 (06:33 +0000)
committerTed Lemon <source@isc.org>
Wed, 5 Mar 1997 06:33:06 +0000 (06:33 +0000)
common/print.c

index e43b58c0b443209c55b7c79f946f3cf698ff9942..a7f374b27ea3b5c377d2fbc02c12892f2a39a7ee 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: print.c,v 1.12 1997/02/22 08:32:05 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: print.c,v 1.13 1997/03/05 06:33:06 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -95,9 +95,8 @@ void print_lease (lease)
               print_hw_addr (lease -> hardware_addr.htype,
                               lease -> hardware_addr.hlen,
                               lease -> hardware_addr.haddr));
-       debug ("  host %s  state %x",
-              lease -> host ? lease -> host -> name : "<none>",
-              lease -> state);
+       debug ("  host %s  ",
+              lease -> host ? lease -> host -> name : "<none>");
 }      
 
 void dump_packet (tp)