summaryrefslogtreecommitdiff
path: root/includes/omapip
diff options
context:
space:
mode:
authorDamien Neil <source@isc.org>2001-02-15 20:47:10 +0000
committerDamien Neil <source@isc.org>2001-02-15 20:47:10 +0000
commit743f0d251c08679fe1bba251936701352ff10957 (patch)
tree8edc8bb439b90fd332339991d8cab9f7e6f3c987 /includes/omapip
parent5f23e89579840001b87213e388b1a022a2505ec1 (diff)
downloadisc-dhcp-743f0d251c08679fe1bba251936701352ff10957.tar.gz
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.
Diffstat (limited to 'includes/omapip')
-rw-r--r--includes/omapip/omapip_p.h2
1 files changed, 1 insertions, 1 deletions
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;