From e718ce993953cdea9db1eaa4311b20475b33cb10 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Sun, 14 May 2000 03:50:45 +0000 Subject: [PATCH] line 647: remark(1552): variable "connection" was set but never used. Removed variable. --- lib/omapi/protocol.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/omapi/protocol.c b/lib/omapi/protocol.c index 6ddaa3b4f4..1a6f42c09f 100644 --- a/lib/omapi/protocol.c +++ b/lib/omapi/protocol.c @@ -644,7 +644,6 @@ static isc_result_t protocol_signalhandler(omapi_object_t *h, const char *name, va_list ap) { isc_result_t result; omapi_protocol_t *p; - omapi_object_t *connection; omapi_connection_t *c; REQUIRE(h != NULL && h->type == omapi_type_protocol); @@ -660,8 +659,6 @@ protocol_signalhandler(omapi_object_t *h, const char *name, va_list ap) { INSIST(p->outer != NULL && p->outer->type == omapi_type_connection); - connection = p->outer; - do { result = dispatch_messages(p, c); } while (result == ISC_R_SUCCESS);