change unsigned char * to void *

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15686 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-07-20 10:49:24 +00:00
parent 1f69d5ed18
commit f871c8a84d
3 changed files with 24 additions and 14 deletions

View File

@@ -240,8 +240,9 @@ static RETSIGTYPE
* It's not neccessary to be root to run it.
*/
void
DES_rand_data(unsigned char *data, int size)
DES_rand_data(void *outdata, int size)
{
unsigned char *data = outdata;
struct itimerval tv, otv;
RETSIGTYPE (*osa)(int);
int i, j;
@@ -388,7 +389,7 @@ memcpy((char *)sequence_index, (ll), sizeof(sequence_index));
* Set the sequnce number to this value (a long long).
*/
void
DES_set_sequence_number(unsigned char *ll)
DES_set_sequence_number(void *ll)
{
set_sequence_number(ll);
}