summaryrefslogtreecommitdiff
path: root/dhcpctl/dhcpctl.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1999-11-23 19:05:36 +0000
committerTed Lemon <source@isc.org>1999-11-23 19:05:36 +0000
commit871f37bf90244a5f78b8bf414a9b12800df07f31 (patch)
treed594da9cf5c9d8d0a395d5de42dc8d53988f040e /dhcpctl/dhcpctl.c
parentd9eefc5dec0bd2986d1465276363f7b97d92b69a (diff)
downloadisc-dhcp-871f37bf90244a5f78b8bf414a9b12800df07f31.tar.gz
Fix call to omapi_connect.
Diffstat (limited to 'dhcpctl/dhcpctl.c')
-rw-r--r--dhcpctl/dhcpctl.c2
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;