From: Ted Lemon Date: Fri, 29 Sep 2000 22:42:09 +0000 (+0000) Subject: Wrap some new debugging code with #ifdef DEBUG. X-Git-Tag: V3-BETA-2-PATCH-6~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bbd4fd6ba83be5e41b2c91fcd6cbabd39ee4e56;p=thirdparty%2Fdhcp.git Wrap some new debugging code with #ifdef DEBUG. --- diff --git a/omapip/support.c b/omapip/support.c index 9f92ad183..05d82f026 100644 --- a/omapip/support.c +++ b/omapip/support.c @@ -292,6 +292,7 @@ isc_result_t omapi_set_value (omapi_object_t *h, omapi_object_t *outer; isc_result_t status; +#if defined (DEBUG) if (!value) { log_info ("omapi_set_value (%.*s, NULL)", (int)name -> len, name -> value); @@ -317,6 +318,7 @@ isc_result_t omapi_set_value (omapi_object_t *h, : "(unknown object)") : "(unknown object)"); } +#endif for (outer = h; outer -> outer; outer = outer -> outer) ; @@ -325,7 +327,9 @@ isc_result_t omapi_set_value (omapi_object_t *h, id, name, value); else status = ISC_R_NOTFOUND; +#if defined (DEBUG) log_info (" ==> %s", isc_result_totext (status)); +#endif return status; }