Commit ce0d9f04 authored by Bodo Möller's avatar Bodo Möller
Browse files

Some comments.

Submitted by:
Reviewed by:
PR:
parent 5612f93f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
		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);
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
# funny stuff
#

$INSTALLTOP="/usr/local/ssl";
$INSTALLTOP="/usr/ssl";

$ssl_version="0.9.2b";