From 743f0d251c08679fe1bba251936701352ff10957 Mon Sep 17 00:00:00 2001 From: Damien Neil Date: Thu, 15 Feb 2001 20:47:10 +0000 Subject: [PATCH] Change the index element of omapi_listener_object_t from an int32_t to an int, to avoid problems when passing it to omapi_array_extend() elsewhere. --- includes/omapip/omapip_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/omapip/omapip_p.h b/includes/omapip/omapip_p.h index 8ca51054..0c186e40 100644 --- a/includes/omapip/omapip_p.h +++ b/includes/omapip/omapip_p.h @@ -173,7 +173,7 @@ typedef struct { typedef struct __omapi_listener_object { OMAPI_OBJECT_PREAMBLE; int socket; /* Connection socket. */ - int32_t index; + int index; struct sockaddr_in address; isc_result_t (*verify_addr) (omapi_object_t *, omapi_addr_t *); } omapi_listener_object_t;