|
From: creecode <icr...@us...> - 2006-03-11 04:52:23
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4448/Common/source Modified Files: langcrypt.c Log Message: replace caddr_t reference with unsigned char * for easier cross-platform compiling Index: langcrypt.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/langcrypt.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** langcrypt.c 10 Mar 2006 21:20:52 -0000 1.1 --- langcrypt.c 11 Mar 2006 04:52:12 -0000 1.2 *************** *** 123,127 **** lockhandle (hdata); ! hmacmd5 ((unsigned char *)(*hdata), gethandlesize (hdata), (unsigned char *)(*hkey), gethandlesize (hkey), (caddr_t) digest); unlockhandle (hkey); --- 123,127 ---- lockhandle (hdata); ! hmacmd5 ((unsigned char *)(*hdata), gethandlesize (hdata), (unsigned char *)(*hkey), gethandlesize (hkey), (unsigned char *) digest); unlockhandle (hkey); *************** *** 236,240 **** ! boolean hmacmd5 (unsigned char * text, int text_len, unsigned char * key, int key_len, caddr_t digest) { /* --- 236,240 ---- ! boolean hmacmd5 (unsigned char * text, int text_len, unsigned char * key, int key_len, unsigned char * digest) { /* |