From e667a2d992ee5b9841b954d896dca94ed5ae1acd Mon Sep 17 00:00:00 2001 From: Hellmuth Michaelis Date: Sun, 3 Dec 2000 16:23:12 +0000 Subject: [PATCH] Add controller number to unknown incoming call log message. --- usr.sbin/i4b/isdnd/support.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/i4b/isdnd/support.c b/usr.sbin/i4b/isdnd/support.c index d8c78968222..1f17638427f 100644 --- a/usr.sbin/i4b/isdnd/support.c +++ b/usr.sbin/i4b/isdnd/support.c @@ -31,7 +31,7 @@ * * $FreeBSD$ * - * last edit-date: [Wed Oct 4 18:24:27 2000] + * last edit-date: [Thu Nov 30 20:36:29 2000] * *---------------------------------------------------------------------------*/ @@ -543,8 +543,8 @@ find_matching_entry_incoming(msg_connect_ind_t *mp) } else { - log(LL_CHD, "%05d incoming call from %s to %s", - mp->header.cdid, mp->src_telno, mp->dst_telno); + log(LL_CHD, "%05d incoming call from %s to %s ctrl %d", + mp->header.cdid, mp->src_telno, mp->dst_telno, mp->controller); } return(NULL); }