[openssl.org #69] Incorrect use of strsep in crypto/evp/evp_test.c

2002-06-03 Thread Richard Levitte via RT
Probably because of atoi(), a last-second change was made, changing ustrsep to strsep on that line. Try replacing strsep with ustrsep, that should work better (I know it worked for me). I'll look into this when I have more time. [[EMAIL PROTECTED] - Mon Jun 3 13:02:51 2002]: Hi, I

Re: [openssl.org #69] Incorrect use of strsep in crypto/evp/evp_test.c

2002-06-03 Thread Ben Laurie
Richard Levitte via RT wrote: Probably because of atoi(), a last-second change was made, changing ustrsep to strsep on that line. Try replacing strsep with ustrsep, that should work better (I know it worked for me). I made the change - I think I mistyped and meant sstrsep - reason being

Re: [openssl.org #69] Incorrect use of strsep in crypto/evp/evp_test.c

2002-06-03 Thread Lutz Jaenicke
On Mon, Jun 03, 2002 at 04:22:33PM +0200, Richard Levitte - VMS Whacker wrote: In message [EMAIL PROTECTED] on Mon, 03 Jun 2002 14:38:35 +0100, Ben Laurie [EMAIL PROTECTED] said: ben Richard Levitte via RT wrote: ben Probably because of atoi(), a last-second change was made, changing ben

[openssl.org #69] Incorrect use of strsep in crypto/evp/evp_test.c

2002-06-03 Thread Richard Levitte via RT
I just commited that change. [[EMAIL PROTECTED] - Mon Jun 3 13:02:51 2002]: Hi, I checked the code in crypto/evp/evp_test.c and it looks like sstrsep do the same like strsep on Linux. So perhaps it was a typo and the code was only tested under Linux. I used sstrsep insteed of

Re: [openssl.org #69] Incorrect use of strsep in crypto/evp/evp_test.c

2002-06-03 Thread Ben Laurie
Richard Levitte - VMS Whacker wrote: In message [EMAIL PROTECTED] on Mon, 03 Jun 2002 14:38:35 +0100, Ben Laurie [EMAIL PROTECTED] said: ben Richard Levitte via RT wrote: ben Probably because of atoi(), a last-second change was made, changing ben ustrsep to strsep on that line. Try