From: Damien Neil Date: Thu, 15 Feb 2001 20:47:10 +0000 (+0000) Subject: Change the index element of omapi_listener_object_t from an int32_t X-Git-Tag: V3-BETA-2-PATCH-18~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=743f0d251c08679fe1bba251936701352ff10957;p=thirdparty%2Fdhcp.git 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. --- diff --git a/includes/omapip/omapip_p.h b/includes/omapip/omapip_p.h index 8ca510546..0c186e402 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;