From 6f41ed6fbfa7bfb4d4fcc796d9d5105e6c910f9f Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 12 Dec 2013 05:21:11 -0500 Subject: [PATCH] additional debug for double lookup case --- daemon/call.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daemon/call.c b/daemon/call.c index e23c36765..a80f3c408 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -1668,9 +1668,12 @@ got_cs: the appropriate details. if no matching stream was found, results are undefined. */ DBG("double lookup"); - if (p == matched_relay->up) + if (p == matched_relay->up) { + DBG("forward direction"); goto skip; + } if (p2 == matched_relay->up) { + DBG("backward direction"); ret = -1; goto skip; }