From cae0b4bf045cd483404b9022ffc1f8584e29eeea Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Sun, 29 Nov 2015 15:30:04 -0500 Subject: [PATCH] compile fix for debug builds fixes #193 Change-Id: Ib2529292f3d6eee28136dccec2e17106090eb38e --- daemon/call.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index 85933affe..203e6dbe4 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -1643,15 +1643,15 @@ static int get_port(struct udp_fd *r, u_int16_t p, const struct call *c) { __C_DBG("attempting to open port %u", p); if (bit_array_set(m->ports_used, p)) { - __C_DBG("port %d in use", port); + __C_DBG("port %d in use", p); return -1; } - __C_DBG("port %d locked", port); + __C_DBG("port %d locked", p); ret = get_port6(r, p, c); if (ret) { - __C_DBG("couldn't open port %d", port); + __C_DBG("couldn't open port %d", p); bit_array_clear(m->ports_used, p); return ret; }