[openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Michael Bell via RT
Hi, I used -nameopt with openssl req and the options will be ignored if req is used with -text. I checked the code of req.c and wrote some patches. I used the function set_cert_ex in apps/apps.c because the options are nearly the same and a non-existing option causes no errors or wrong

Re: [openssl.org #66] Possible bug in OpenSSL-0.9.6d/crypto/asn1/a_utctm.c

2002-06-03 Thread Ben Laurie via RT
[EMAIL PROTECTED] via RT wrote: I believe that I have found a bug in the above file and would like for someone else to santiy check it. At line 290 in a_utctm.c, a separate code block is being used if the library needs to call gmtime_r() to get the time structure. The value is stored in

[openssl.org #68] OpenSSL 0.9.7 beta1: gcc version check broken for gcc 3.1

2002-06-03 Thread [EMAIL PROTECTED] via RT
Dear OpenSSL maintainers, apologies if this has been already pointed out or is not correct. It looks to me that .../openssl-0.9.7-beta1/config incorrectly determines gcc version for gcc-3.1. For gcc-3.1, the output of `gcc --version' is: gcc (GCC) 3.1 Copyright (C) 2002 Free Software

Re: Problem with openssl-0.9.7-stable

2002-06-03 Thread Michael Bell
-stable-SNAP-20020603/crypto/evp] [ 509 ]# diff evp_test.c.org evp_test.c 361c361 encdec = atoi(strsep(p,\n)); --- encdec = atoi(sstrsep(p,\n)); Best Regards, Michael -- --- Michael Bell Email

[openssl.org #69] Re: Problem with openssl-0.9.7-stable

2002-06-03 Thread Michael Bell via RT
-stable-SNAP-20020603/crypto/evp] [ 509 ]# diff evp_test.c.org evp_test.c 361c361 encdec = atoi(strsep(p,\n)); --- encdec = atoi(sstrsep(p,\n)); Best Regards, Michael -- --- Michael Bell Email

Problem with openssl-0.9.7-stable

2002-06-03 Thread Michael Bell
evp_test.o -L.. -lcrypto -lsocket -lnsl -ldl evp_test.o: In function `main': evp_test.o(.text+0x1300): undefined reference to `strsep' collect2: ld returned 1 exit status make[1]: *** [evp_test] Error 1 make[1]: Leaving directory `/tmp/openssl-0.9.7-stable-SNAP-20020603/test' make: *** [sub_all] Error 1

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

2002-06-03 Thread Richard Levitte via RT
-stable-SNAP-20020603/crypto/evp] [ 509 ]# diff evp_test.c.org evp_test.c 361c361 encdec = atoi(strsep(p,\n)); --- encdec = atoi(sstrsep(p,\n)); Best Regards, Michael -- Richard Levitte [EMAIL PROTECTED

[openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Richard Levitte via RT
Please resend a patch that is generated using one of the options -u (unified context diff, which is prefered) or -c (context diff). [[EMAIL PROTECTED] - Mon Jun 3 11:42:22 2002]: Hi, I used -nameopt with openssl req and the options will be ignored if req is used with -text. I checked

Re: [openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Michael Bell
Richard Levitte via RT schrieb: Please resend a patch that is generated using one of the options -u (unified context diff, which is prefered) or -c (context diff). Ok, I used diff -u. Michael -- --- Michael Bell

Re: [openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Michael Bell via RT
Richard Levitte via RT schrieb: Please resend a patch that is generated using one of the options -u (unified context diff, which is prefered) or -c (context diff). Ok, I used diff -u. Michael -- --- Michael Bell

[ANNOUNCE] OpenSSL 0.9.7 beta 1 released

2002-06-03 Thread Lutz Jaenicke
On Sun, Jun 02, 2002, Lutz Jaenicke wrote: The first beta release of OpenSSL 0.9.7 is now available from the OpenSSL FTP site URL: ftp://ftp.openssl.org/source/. Quite a lot of code changed between the 0.9.6 release and the 0.9.7 release, so a series of 3 or 4 beta releases is planned before

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

2002-06-03 Thread Ben Laurie
it was a typo and the code was only tested under Linux. I used sstrsep insteed of strsep. OpenSSL compiles and make test succeed. The patch is like follows: ...openssl-0.9.7-stable-SNAP-20020603/crypto/evp] [ 509 ]# diff evp_test.c.org evp_test.c 361c361 encdec = atoi(strsep(p,\n

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

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

2002-06-03 Thread Richard Levitte - VMS Whacker
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 replacing strsep with ben ustrsep, that

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

2002-06-03 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 03 Jun 2002 16:22:33 +0200 (CEST), Richard Levitte - VMS Whacker [EMAIL PROTECTED] said: levitte In message [EMAIL PROTECTED] on Mon, 03 Jun 2002 14:38:35 +0100, Ben Laurie [EMAIL PROTECTED] said: levitte levitte ben Richard Levitte via RT wrote: levitte

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

2002-06-03 Thread Richard Levitte via RT
of strsep. OpenSSL compiles and make test succeed. The patch is like follows: ...openssl-0.9.7-stable-SNAP-20020603/crypto/evp] [ 509 ]# diff evp_test.c.org evp_test.c 361c361 encdec = atoi(strsep(p,\n)); --- encdec = atoi(sstrsep(p,\n)); Best Regards, Michael

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

DJGPP (DOS) Patch for 0.9.7

2002-06-03 Thread Doug Kaufman
Here is a slightly redone patch so that openssl-0.9.7 compiles under DJGPP. This is against the June 1 snapshot. I removed the part of the patch relating to Cygwin, since the Cygwin settings in Configure have now changed. This configures, builds, and does make test without problem, except for the

Cygwin problems with 0.9.7

2002-06-03 Thread Doug Kaufman
Building 0.9.7 (snapshot from June 1) with Cygwin led to several warnings during compilation related to the assembly code now included by default. Despite the warnings, it passed the tests in make test. Does something need to get fixed? These warnings under Cygwin's port of GCC were errors under

[openssl.org #72] [Fwd: Bug#135297: Typo in SSL_CTX_set_cert_store(3ssl)]

2002-06-03 Thread Christoph Martin via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

[openssl.org #70] [Fwd: Bug#144586: libssl-dev: Typo in BN_rand(3ssl) man page]

2002-06-03 Thread Christoph Martin via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]

[openssl.org #71] [Fwd: Bug#141360: libssl-dev: gcc warning: redundant declaration of ERR_load_PEM_strings()]

2002-06-03 Thread Christoph Martin via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]