From 18e6f8d2c6d99a3b0aa59d10382603a331bd45dc Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Wed, 30 Mar 2011 16:41:29 -0400 Subject: [PATCH] Remove a unnecessary debug print from add_u32_option(). --- ndhc/options.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ndhc/options.c b/ndhc/options.c index a517ee9..bbd1f76 100644 --- a/ndhc/options.c +++ b/ndhc/options.c @@ -1,5 +1,5 @@ /* options.c - DHCP options handling - * Time-stamp: <2011-03-30 16:34:41 nk> + * Time-stamp: <2011-03-30 16:41:03 nk> * * (c) 2004-2011 Nicholas J. Kain * @@ -293,7 +293,6 @@ size_t add_u32_option(uint8_t *optbuf, size_t buflen, uint8_t code, length = option_length(code); - log_line("add_u32_option: code=0x%02x length=0x%02x", code, length); option[0] = code; option[1] = length;