I happened to spot the following in ssl.c:
static int jbs_gets(BIO *b, char *out, int outl)
...
int l = (int)strlen(J2S(o));
if (l < outl) {
strcpy(out, J2S(o));
ret = outl;
}
...
return ret;
It looks a bit odd to me - I would have expected it to return l rather
than outl.
However, I've no idea what the function API is supposed to be - and
the caller can use strlen(out) to find l - so I'm probably wrong.
On 18/11/2008, Mladen Turk <[EMAIL PROTECTED]> wrote:
> William A. Rowe, Jr. wrote:
>
> > Mladen Turk wrote:
> >
> > You are the chair... and further you had called the vote. Feel free
> > to reverse yourself :)
> >
> >
>
> Wow, and I thought the chair is the slave that
> collects and writes board reports ;)
>
> Cheers
> --
> ^(TM)
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]