pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/boringssl "false" is spelled 0 when returning...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/77e66bf91818
branches:  trunk
changeset: 356194:77e66bf91818
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Wed Dec 21 13:38:16 2016 +0000

description:
"false" is spelled 0 when returning integers.

diffstat:

 security/boringssl/distinfo                              |   3 ++-
 security/boringssl/patches/patch-crypto_aes_aes__test.cc |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r dc19b87789d2 -r 77e66bf91818 security/boringssl/distinfo
--- a/security/boringssl/distinfo       Wed Dec 21 13:37:24 2016 +0000
+++ b/security/boringssl/distinfo       Wed Dec 21 13:38:16 2016 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1.1.1 2015/12/31 02:57:35 agc Exp $
+$NetBSD: distinfo,v 1.2 2016/12/21 13:38:16 joerg Exp $
 
 SHA1 (boringssl-20151230.tar.gz) = eb3681358044990bc54c9ab58a3ce8d951edd022
 RMD160 (boringssl-20151230.tar.gz) = cf2b15e5dc261efcba44cb493947e9c48d346c36
@@ -9,4 +9,5 @@
 SHA1 (patch-crypto__bio__socket_helper.c) = 6ac17f5899817522d3ba883a88d87b5d8541213e
 SHA1 (patch-crypto__lhash__lhash_test.c) = 9f411a45fcb8d861911f8ef69651f591a70211b2
 SHA1 (patch-crypto__mem.c) = 186c7f7af8b28defc80266a351456328df0976cc
+SHA1 (patch-crypto_aes_aes__test.cc) = d5c442101a42ca46456cb42b6e4cea053f7a98cb
 SHA1 (patch-include__openssl__thread.h) = 0faf11db8591026c10ae3271936b1ef6381d977a
diff -r dc19b87789d2 -r 77e66bf91818 security/boringssl/patches/patch-crypto_aes_aes__test.cc
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/boringssl/patches/patch-crypto_aes_aes__test.cc  Wed Dec 21 13:38:16 2016 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-crypto_aes_aes__test.cc,v 1.1 2016/12/21 13:38:16 joerg Exp $
+
+main() does not return bool.
+
+--- crypto/aes/aes_test.cc.orig        2016-12-21 00:28:18.783846441 +0000
++++ crypto/aes/aes_test.cc
+@@ -94,7 +94,7 @@ int main() {
+                                 "\x88\x99\xaa\xbb\xcc\xdd\xee\xff",
+                (const uint8_t *)"\x8e\xa2\xb7\xca\x51\x67\x45\xbf"
+                                 "\xea\xfc\x49\x90\x4b\x49\x60\x89")) {
+-    return false;
++    return 0;
+   }
+ 
+   printf("PASS\n");



Home | Main Index | Thread Index | Old Index