From ce0d9f049a1cc054aec0c4da627156aee74b1d76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Thu, 6 May 1999 23:36:54 +0000 Subject: [PATCH] Some comments. Submitted by: Reviewed by: PR: --- crypto/asn1/a_gentm.c | 4 ++-- crypto/asn1/a_time.c | 2 +- crypto/asn1/a_utctm.c | 2 +- tools/c_rehash | 2 +- util/mk1mf.pl | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crypto/asn1/a_gentm.c b/crypto/asn1/a_gentm.c index be8570c302..70c99ef441 100644 --- a/crypto/asn1/a_gentm.c +++ b/crypto/asn1/a_gentm.c @@ -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 diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c index 848688b7db..c19b7b2cac 100644 --- a/crypto/asn1/a_time.c +++ b/crypto/asn1/a_time.c @@ -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 diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c index ebc6e384c1..557c1efb8e 100644 --- a/crypto/asn1/a_utctm.c +++ b/crypto/asn1/a_utctm.c @@ -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); diff --git a/tools/c_rehash b/tools/c_rehash index cc3b65871f..d89ab38e64 100644 --- a/tools/c_rehash +++ b/tools/c_rehash @@ -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 diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 7749505c50..438097b600 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -5,7 +5,7 @@ # funny stuff # -$INSTALLTOP="/usr/local/ssl"; +$INSTALLTOP="/usr/ssl"; $ssl_version="0.9.2b"; -- 2.34.1