Bug#766484: Info received (FTBFS in a cowbuilder: Error: listen EADDRNOTAVAIL)

2014-12-19 Thread Niels Thykier
On Wed, 26 Nov 2014 12:10:22 + James Cowgill
james...@cowgill.org.uk wrote:
 Oops, actually attach the patch this time.
 
 James

Hi,

James, thanks for finding a patch. :)

Jérémy, could you be convinced to upload a version of nodejs with the
patch provided by James?
  If time/resources are an issue, let me know and I can look into
finding a NMU'er for you.

~Niels


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766484: Info received (FTBFS in a cowbuilder: Error: listen EADDRNOTAVAIL)

2014-12-19 Thread Niels Thykier
On 2014-12-19 18:29, Niels Thykier wrote:
 On Wed, 26 Nov 2014 12:10:22 + James Cowgill
 james...@cowgill.org.uk wrote:
 Oops, actually attach the patch this time.

 James
 
 Hi,
 
 James, thanks for finding a patch. :)
 
 [...]
 
 ~Niels
 

Credit where it is due.  Jean, thanks for finding the patch and James
for confirming it works and attaching it!

Sorry for the confusion,
~Niels


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#766484: Info received (FTBFS in a cowbuilder: Error: listen EADDRNOTAVAIL)

2014-11-26 Thread James Cowgill
Oops, actually attach the patch this time.

James
From 707cc25011d142fe4ade14ce2aa083a96ef15bcb Mon Sep 17 00:00:00 2001
From: Fedor Indutny fe...@indutny.com
Date: Wed, 15 Oct 2014 20:50:15 +0400
Subject: [PATCH] test: fix test-crypto-stream

Because of constant-timeness change made in openssl-1.0.1j the error is
no longer returned from EVP_DecryptFinal_ex. Now it just return 0, and
thus the error message does not contain proper error code. Adapt to this
change, there is not much that we could do about it.
---
 test/simple/test-crypto-stream.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/test/simple/test-crypto-stream.js b/test/simple/test-crypto-stream.js
index 72c9776..402761e 100644
--- a/test/simple/test-crypto-stream.js
+++ b/test/simple/test-crypto-stream.js
@@ -70,8 +70,7 @@ var key = new Buffer('48fb56eb10ffeb13fc0ef551bbca3b1b', 'hex'),
 
 cipher.pipe(decipher)
   .on('error', common.mustCall(function end(err) {
-// TypeError: error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt
-assert(/:06065064:/.test(err));
+assert(/::/.test(err));
   }));
 
 cipher.end('Papaya!');  // Should not cause an unhandled exception.