From ace190a33e05be0c1690c9a4d2df377b23285214 Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 6 Jan 2015 15:35:08 -0500 Subject: [PATCH] regression --- src/js/dynamic-net-filtering.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/dynamic-net-filtering.js b/src/js/dynamic-net-filtering.js index 635b91e92..fca867332 100644 --- a/src/js/dynamic-net-filtering.js +++ b/src/js/dynamic-net-filtering.js @@ -253,7 +253,7 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) { // Specific-destination + any type this.y = desHostname; - this.r = this.evaluateCellZ(srcHostname, desHostname, type); + this.r = this.evaluateCellZ(srcHostname, desHostname, '*'); if ( this.r !== 0 ) { return this; } var d = desHostname; for (;;) { @@ -262,7 +262,7 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) { break; } this.y = d; - this.r = this.evaluateCellZ(srcHostname, d, type); + this.r = this.evaluateCellZ(srcHostname, d, '*'); if ( this.r !== 0 ) { return this; } }