diff options
author | Ted Lemon <source@isc.org> | 1999-11-23 19:05:36 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1999-11-23 19:05:36 +0000 |
commit | 871f37bf90244a5f78b8bf414a9b12800df07f31 (patch) | |
tree | d594da9cf5c9d8d0a395d5de42dc8d53988f040e /dhcpctl/dhcpctl.c | |
parent | d9eefc5dec0bd2986d1465276363f7b97d92b69a (diff) | |
download | isc-dhcp-871f37bf90244a5f78b8bf414a9b12800df07f31.tar.gz |
Fix call to omapi_connect.
Diffstat (limited to 'dhcpctl/dhcpctl.c')
-rw-r--r-- | dhcpctl/dhcpctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpctl/dhcpctl.c b/dhcpctl/dhcpctl.c index 4abdac34..c9ae4004 100644 --- a/dhcpctl/dhcpctl.c +++ b/dhcpctl/dhcpctl.c @@ -73,7 +73,7 @@ dhcpctl_status dhcpctl_connect (dhcpctl_handle *connection, } status = omapi_protocol_connect (*connection, server_name, - port, authinfo); + (unsigned)port, authinfo); if (status != ISC_R_SUCCESS) { omapi_object_dereference (connection, "dhcpctl_connect"); return status; |