From b14908e59ecf0174f2cfb164809e8bf9cf5b5850 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 b5d11e25f..673d7e716 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -1666,9 +1666,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; }