mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 05:47:45 +00:00
Type casts for Solaris, from Brian Murrell.
This commit is contained in:
parent
32e4f77644
commit
5e3beae3a3
@ -437,7 +437,7 @@ isc_result_t omapi_connection_put_name (omapi_object_t *c, char *name)
|
||||
status = omapi_connection_put_uint16 (c, len);
|
||||
if (status != ISC_R_SUCCESS)
|
||||
return status;
|
||||
return omapi_connection_copyin (c, name, len);
|
||||
return omapi_connection_copyin (c, (unsigned char *)name, len);
|
||||
}
|
||||
|
||||
isc_result_t omapi_connection_put_string (omapi_object_t *c, char *string)
|
||||
@ -450,7 +450,7 @@ isc_result_t omapi_connection_put_string (omapi_object_t *c, char *string)
|
||||
status = omapi_connection_put_uint32 (c, len);
|
||||
if (status != ISC_R_SUCCESS)
|
||||
return status;
|
||||
return omapi_connection_copyin (c, string, len);
|
||||
return omapi_connection_copyin (c, (unsigned char *)string, len);
|
||||
}
|
||||
|
||||
isc_result_t omapi_connection_put_handle (omapi_object_t *c, omapi_object_t *h)
|
||||
|
Loading…
x
Reference in New Issue
Block a user