Some comments.

Submitted by:
Reviewed by:
PR:
diff --git a/crypto/asn1/a_gentm.c b/crypto/asn1/a_gentm.c
index be8570c..70c99ef 100644
--- a/crypto/asn1/a_gentm.c
+++ b/crypto/asn1/a_gentm.c
@@ -183,8 +183,8 @@
 		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 848688b..c19b7b2 100644
--- a/crypto/asn1/a_time.c
+++ b/crypto/asn1/a_time.c
@@ -98,7 +98,7 @@
 
 #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 ebc6e38..557c1ef 100644
--- a/crypto/asn1/a_utctm.c
+++ b/crypto/asn1/a_utctm.c
@@ -177,7 +177,7 @@
 		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 cc3b658..d89ab38 100644
--- a/tools/c_rehash
+++ b/tools/c_rehash
@@ -8,7 +8,7 @@
 	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 7749505..438097b 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";