From: Ted Lemon Date: Thu, 17 Aug 2000 19:43:04 +0000 (+0000) Subject: Use unsigned char instead of u_char. X-Git-Tag: V3-BETA-2-PATCH-1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b63c26ef8120a7f5ad5f6cab21f791b7008d518;p=thirdparty%2Fdhcp.git Use unsigned char instead of u_char. --- diff --git a/includes/omapip/omapip_p.h b/includes/omapip/omapip_p.h index 0661d9703..09fbb9ddd 100644 --- a/includes/omapip/omapip_p.h +++ b/includes/omapip/omapip_p.h @@ -257,7 +257,7 @@ OMAPI_OBJECT_ALLOC_DECL (omapi_message, isc_result_t omapi_connection_sign_data (int mode, DST_KEY *key, void **context, - const u_char *data, + const unsigned char *data, const unsigned len, omapi_typed_data_t **result); diff --git a/omapip/connection.c b/omapip/connection.c index ca7909d76..7afa1605d 100644 --- a/omapip/connection.c +++ b/omapip/connection.c @@ -484,7 +484,7 @@ static isc_result_t make_dst_key (DST_KEY **dst_key, omapi_object_t *a) { isc_result_t omapi_connection_sign_data (int mode, DST_KEY *key, void **context, - const u_char *data, + const unsigned char *data, const unsigned len, omapi_typed_data_t **result) {