summaryrefslogtreecommitdiff
path: root/dhcpctl/cltest.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-08-25 18:28:28 +0000
committerTed Lemon <source@isc.org>2000-08-25 18:28:28 +0000
commitb08234e9c71eac458689a61ae7cc55a96070c502 (patch)
tree0bfe8ecd2fe2d7d9b2dc81b255a9afafcdf8a341 /dhcpctl/cltest.c
parentbb0b00a5e8ac8e1a71ccd22008f64f411e12926f (diff)
downloadisc-dhcp-b08234e9c71eac458689a61ae7cc55a96070c502.tar.gz
Fix a couple of compile warnings on Tru64 5.0
Diffstat (limited to 'dhcpctl/cltest.c')
-rw-r--r--dhcpctl/cltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpctl/cltest.c b/dhcpctl/cltest.c
index bb5c0e2f..15cedb2b 100644
--- a/dhcpctl/cltest.c
+++ b/dhcpctl/cltest.c
@@ -114,7 +114,7 @@ int main (argc, argv)
if (name) {
status = dhcpctl_new_authenticator (&authenticator,
name, algorithm, pass,
- strlen (pass) + 1);
+ (int)strlen (pass) + 1);
if (status != ISC_R_SUCCESS) {
fprintf (stderr, "Cannot create authenticator: %s\n",
isc_result_totext (status));