[openssl-commits] [web] master update

2018-08-13 Thread Rich Salz
The branch master has been updated
   via  521b74a4bd4f20cf9955c50199c760876a339edb (commit)
  from  45331ed59e3bd3c16808ceed54e35a98a3fea79b (commit)


- Log -
commit 521b74a4bd4f20cf9955c50199c760876a339edb
Author: Rich Salz 
Date:   Mon Aug 13 22:41:34 2018 -0400

Fix date for when travel policy was approved

---

Summary of changes:
 policies/travel.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/policies/travel.html b/policies/travel.html
index 5d0f1db..7eda596 100644
--- a/policies/travel.html
+++ b/policies/travel.html
@@ -12,7 +12,7 @@

  Travel Reimbursement Policy
  
-   First issued 28th February 2014
+   First issued 28th February 2018
  

 
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

2018-08-13 Thread Matt Caswell
The branch OpenSSL_1_1_0-stable has been updated
   via  cc08075f66cd8494952321bb59566f22dce0 (commit)
  from  6114041540d8d1fecaf23a861788c3c742d3b467 (commit)


- Log -
commit cc08075f66cd8494952321bb59566f22dce0
Author: Andy Polyakov 
Date:   Wed Jun 27 11:57:45 2018 +0200

crypto/o_fopen.c: alias fopen to fopen64.

Originally fopen(3) was called from bio/bss_file.c, which performed the
aliasing. Then fopen(3) was moved to o_fopen.c, while "magic" definition
was left behind. It's still useful on 32-bit platforms, so pull it to
o_fopen.c.

Reviewed-by: Paul Dale 
Reviewed-by: Tim Hudson 
(Merged from https://github.com/openssl/openssl/pull/6596)

(cherry picked from commit 2369111fd94ebc9b7d37e68f3ea9629f2fe5fa2e)

---

Summary of changes:
 crypto/o_fopen.c | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/crypto/o_fopen.c b/crypto/o_fopen.c
index a3a0065..63a31b0 100644
--- a/crypto/o_fopen.c
+++ b/crypto/o_fopen.c
@@ -7,6 +7,24 @@
  * https://www.openssl.org/source/license.html
  */
 
+# if defined(__linux) || defined(__sun) || defined(__hpux)
+/*
+ * Following definition aliases fopen to fopen64 on above mentioned
+ * platforms. This makes it possible to open and sequentially access files
+ * larger than 2GB from 32-bit application. It does not allow to traverse
+ * them beyond 2GB with fseek/ftell, but on the other hand *no* 32-bit
+ * platform permits that, not with fseek/ftell. Not to mention that breaking
+ * 2GB limit for seeking would require surgery to *our* API. But sequential
+ * access suffices for practical cases when you can run into large files,
+ * such as fingerprinting, so we can let API alone. For reference, the list
+ * of 32-bit platforms which allow for sequential access of large files
+ * without extra "magic" comprise *BSD, Darwin, IRIX...
+ */
+#  ifndef _FILE_OFFSET_BITS
+#   define _FILE_OFFSET_BITS 64
+#  endif
+# endif
+
 #include "internal/cryptlib.h"
 
 #if !defined(OPENSSL_NO_STDIO)
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2018-08-13 Thread Matt Caswell
The branch master has been updated
   via  2369111fd94ebc9b7d37e68f3ea9629f2fe5fa2e (commit)
  from  9f9a7d60ad670e058f4c4e74eee5341caf970471 (commit)


- Log -
commit 2369111fd94ebc9b7d37e68f3ea9629f2fe5fa2e
Author: Andy Polyakov 
Date:   Wed Jun 27 11:57:45 2018 +0200

crypto/o_fopen.c: alias fopen to fopen64.

Originally fopen(3) was called from bio/bss_file.c, which performed the
aliasing. Then fopen(3) was moved to o_fopen.c, while "magic" definition
was left behind. It's still useful on 32-bit platforms, so pull it to
o_fopen.c.

Reviewed-by: Paul Dale 
Reviewed-by: Tim Hudson 
(Merged from https://github.com/openssl/openssl/pull/6596)

---

Summary of changes:
 crypto/o_fopen.c | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/crypto/o_fopen.c b/crypto/o_fopen.c
index 1090a06..f08f99b 100644
--- a/crypto/o_fopen.c
+++ b/crypto/o_fopen.c
@@ -7,6 +7,24 @@
  * https://www.openssl.org/source/license.html
  */
 
+# if defined(__linux) || defined(__sun) || defined(__hpux)
+/*
+ * Following definition aliases fopen to fopen64 on above mentioned
+ * platforms. This makes it possible to open and sequentially access files
+ * larger than 2GB from 32-bit application. It does not allow to traverse
+ * them beyond 2GB with fseek/ftell, but on the other hand *no* 32-bit
+ * platform permits that, not with fseek/ftell. Not to mention that breaking
+ * 2GB limit for seeking would require surgery to *our* API. But sequential
+ * access suffices for practical cases when you can run into large files,
+ * such as fingerprinting, so we can let API alone. For reference, the list
+ * of 32-bit platforms which allow for sequential access of large files
+ * without extra "magic" comprise *BSD, Darwin, IRIX...
+ */
+#  ifndef _FILE_OFFSET_BITS
+#   define _FILE_OFFSET_BITS 64
+#  endif
+# endif
+
 #include "internal/cryptlib.h"
 
 #if !defined(OPENSSL_NO_STDIO)
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] [openssl] master update

2018-08-13 Thread Richard Levitte
The branch master has been updated
   via  9f9a7d60ad670e058f4c4e74eee5341caf970471 (commit)
  from  18174ba8a3c634085c5cd15e0f28339e7b6cf679 (commit)


- Log -
commit 9f9a7d60ad670e058f4c4e74eee5341caf970471
Author: Richard Levitte 
Date:   Sun Aug 12 14:22:16 2018 +0200

Configuration/15-android.conf: slightly move NDK canonisation

This allows the original path to be displayed when it's shown
to be invalid, so the user can relate without question.

Reviewed-by: Andy Polyakov 
(Merged from https://github.com/openssl/openssl/pull/6925)

---

Summary of changes:
 Configurations/15-android.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/15-android.conf b/Configurations/15-android.conf
index 89c5d0a..d3b428b 100644
--- a/Configurations/15-android.conf
+++ b/Configurations/15-android.conf
@@ -24,8 +24,8 @@
 
 my $ndk = $ENV{ANDROID_NDK};
 die "\$ANDROID_NDK is not defined"  if (!$ndk);
-$ndk = canonpath($ndk);
 die "\$ANDROID_NDK=$ndk is invalid" if (!-d "$ndk/platforms");
+$ndk = canonpath($ndk);
 
 my $ndkver = undef;
 
_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits


[openssl-commits] Build completed: openssl master.19355

2018-08-13 Thread AppVeyor


Build openssl master.19355 completed



Commit f3687e0967 by daurnimator on 8/13/2018 5:54 AM:

Add X509_VERIFY_PARAM_get1_ip


Configure your notification preferences

_
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits