Some comments.
Submitted by: Reviewed by: PR:
This commit is contained in:
parent
5612f93f37
commit
ce0d9f049a
5 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# funny stuff
|
||||
#
|
||||
|
||||
$INSTALLTOP="/usr/local/ssl";
|
||||
$INSTALLTOP="/usr/ssl";
|
||||
|
||||
$ssl_version="0.9.2b";
|
||||
|
||||
|
|
Loading…
Reference in a new issue