cci_msg_retrieve_blob(): changed argument 4 from void** to char**
authorAlexandra Ellwood <lxs@mit.edu>
Fri, 9 Jun 2006 21:46:24 +0000 (21:46 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Fri, 9 Jun 2006 21:46:24 +0000 (21:46 +0000)
to suppress the warnings from gcc.

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/ccapi@18095 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/ccapi/common/msg.c
src/lib/ccapi/include/msg.h

index 8c8cc29de71a1dddc3a005e7b903b0127a52ef8d..789fc874649c374f457923e1f5e5ecbad643d6d4 100644 (file)
@@ -567,7 +567,7 @@ cci_msg_unflatten(void *flat, int flat_len, cc_msg_t** msgpp)
 }\r
 \r
 cc_int32\r
-cci_msg_retrieve_blob(cc_msg_t* msg, cc_uint32 blob_offset, cc_uint32 blob_len, void **blobp) \r
+cci_msg_retrieve_blob(cc_msg_t* msg, cc_uint32 blob_offset, cc_uint32 blob_len, char **blobp) \r
 {\r
     cc_generic_iterate_t*      gen_iterator;\r
     cc_generic_list_node_t*    gen_node;\r
index 182ebc161166f14bdb9e23fbb7ef9e7cca46ecac..79b9a7f72e118b61fbfce9fe448ef689f1ecd753 100644 (file)
@@ -139,7 +139,7 @@ cc_int32 cci_msg_flatten(cc_msg_t* msg, void **);
 cc_int32 cci_msg_calc_magic(void *flat, int flat_len, cc_uint32 * sizep);
 cc_int32 cci_msg_verify(void* flat, int flat_len, cc_uint32 * sizep);
 cc_int32 cci_msg_unflatten(void *flat, int flat_len, cc_msg_t** msgpp);
-cc_int32 cci_msg_retrieve_blob(cc_msg_t* msg, cc_uint32 blob_offset, cc_uint32 blob_len, void **);
+cc_int32 cci_msg_retrieve_blob(cc_msg_t* msg, cc_uint32 blob_offset, cc_uint32 blob_len, char **);
 cc_int32 cci_msg_destroy(cc_msg_t* msg);
 
 /* Add missing byte swapping macros for 64-bit values */