Some comments.

Submitted by:
Reviewed by:
PR:
This commit is contained in:
Bodo Möller 1999-05-06 23:36:54 +00:00
parent 5612f93f37
commit ce0d9f049a
5 changed files with 6 additions and 6 deletions

View file

@ -183,8 +183,8 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
return(NULL);
#if defined(THREADS) && !defined(WIN32)
gmtime_r(&t,&data);
ts=&data;
gmtime_r(&t,&data); /* should return &data, but doesn't on some systems, so we don't even look at the return value */
ts=&data;
#else
ts=gmtime(&t);
#endif

View file

@ -98,7 +98,7 @@ ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t)
#if defined(THREADS) && !defined(WIN32)
gmtime_r(&t,&data);
ts=&data;
ts=&data; /* should return &data, but doesn't on some systems, so we don't even look at the return value */
#else
ts=gmtime(&t);
#endif

View file

@ -177,7 +177,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
return(NULL);
#if defined(THREADS) && !defined(WIN32)
gmtime_r(&t,&data);
gmtime_r(&t,&data); /* should return &data, but doesn't on some systems, so we don't even look at the return value */
ts=&data;
#else
ts=gmtime(&t);

View file

@ -8,7 +8,7 @@ if [ "$OPENSSL"x = "x" -o ! -x "$OPENSSL" ]; then
OPENSSL='openssl'
export OPENSSL
fi
DIR=/usr/local/ssl
DIR=/usr/ssl
PATH=$DIR/bin:$PATH
if [ ! -f "$OPENSSL" ]; then

View file

@ -5,7 +5,7 @@
# funny stuff
#
$INSTALLTOP="/usr/local/ssl";
$INSTALLTOP="/usr/ssl";
$ssl_version="0.9.2b";