Fixed in todays CVS by Dr. S. Hanson. (this and the others were filed yesterday, but only made it through rt@ a few hours ago. Sorry.)
On Sun, Nov 2, 2008 at 9:13 PM, The default queue via RT <[EMAIL PROTECTED]> wrote: > > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "engines/e_padlock.c -- compile issue with size_t vs int -- patch/diff > included", > a summary of which appears below. > > There is no need to reply to this message right now. Your ticket has been > assigned an ID of [openssl.org #1774]. > > Please include the string: > > [openssl.org #1774] > > in the subject line of all future correspondence about this issue. To do so, > you may reply to this message. > > Thank you, > [EMAIL PROTECTED] > > ------------------------------------------------------------------------- > VERSION: todays' CVS 0.9.9 (bleeding edge) > > ISSUE: a function (padlock_rand_bytes) with int parameter, which > function pointer prototype requires size_t (which is different size on > several platforms). > > Patch to correct this: > > --- \\Debbie\ger\prj\1original\openssl\openssl\engines\e_padlock.c > 2008-01-03 > 23:43:03.000000000 +-0100 > +++ \\Debbie\ger\prj\3actual\openssl\engines\e_padlock.c 2008-11-01 > 22:35:03.000000000 +-0100 > @@ -1166,10 +1166,10 @@ > * (posted at http://www.via.com.tw/en/viac3/c3.jsp) nor does it > * provide meaningful error control... > */ > /* Wrapper that provides an interface between the API and > the raw PadLock RNG */ > static int > -padlock_rand_bytes(unsigned char *output, int count) > +padlock_rand_bytes(unsigned char *output, size_t count) > { > unsigned int eax, buf; > > > > -- > Met vriendelijke groeten / Best regards, > > Ger Hobbelt > > -------------------------------------------------- > web: http://www.hobbelt.com/ > http://www.hebbut.net/ > mail: [EMAIL PROTECTED] > mobile: +31-6-11 120 978 > -------------------------------------------------- > > -- Met vriendelijke groeten / Best regards, Ger Hobbelt -------------------------------------------------- web: http://www.hobbelt.com/ http://www.hebbut.net/ mail: [EMAIL PROTECTED] mobile: +31-6-11 120 978 -------------------------------------------------- ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
