From bbdb72a4d7b43c85b68b04074030d51be110de2a Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Wed, 24 Nov 1999 04:13:07 +0000 Subject: [PATCH] Work around bletcherosity in handle declarations. --- omapip/protocol.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/omapip/protocol.c b/omapip/protocol.c index d4f4a748f..1c943ff12 100644 --- a/omapip/protocol.c +++ b/omapip/protocol.c @@ -230,6 +230,7 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h, omapi_object_t *c; u_int16_t nlen; u_int32_t vlen; + u_int32_t th; if (h -> type != omapi_type_protocol) { /* XXX shouldn't happen. Put an assert here? */ @@ -299,7 +300,8 @@ isc_result_t omapi_protocol_signal_handler (omapi_object_t *h, /* XXX bind the authenticator here! */ omapi_connection_get_uint32 (c, &p -> message -> authlen); omapi_connection_get_uint32 (c, &p -> message -> op); - omapi_connection_get_uint32 (c, &p -> message -> handle); + omapi_connection_get_uint32 (c, &th); + p -> message -> handle = th; omapi_connection_get_uint32 (c, &p -> message -> id); omapi_connection_get_uint32 (c, &p -> message -> rid); -- 2.47.3