From: Ted Lemon Date: Thu, 16 Sep 1999 00:59:01 +0000 (+0000) Subject: Type casts for Solaris, from Brian Murrell. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e3beae3a33bd27d4ef17b6bb86db554ae2a3aa4;p=thirdparty%2Fdhcp.git Type casts for Solaris, from Brian Murrell. --- diff --git a/omapip/buffer.c b/omapip/buffer.c index 477a2ce1d..5c6f99c21 100644 --- a/omapip/buffer.c +++ b/omapip/buffer.c @@ -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)