[svn-commits] tzafrir: branch 1.4 r4571 - /branches/1.4/kernel/xpp/utils/zapconf

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Oct 20 07:13:31 CDT 2008


Author: tzafrir
Date: Mon Oct 20 07:13:31 2008
New Revision: 4571

URL: http://svn.digium.com/view/zaptel?view=rev&rev=4571
Log:
zapconf: Fix number in error message in case of unknown channel type.

Modified:
    branches/1.4/kernel/xpp/utils/zapconf

Modified: branches/1.4/kernel/xpp/utils/zapconf
URL: http://svn.digium.com/view/zaptel/branches/1.4/kernel/xpp/utils/zapconf?view=diff&rev=4571&r1=4570&r2=4571
==============================================================================
--- branches/1.4/kernel/xpp/utils/zapconf (original)
+++ branches/1.4/kernel/xpp/utils/zapconf Mon Oct 20 07:13:31 2008
@@ -166,7 +166,7 @@
 		printf "# channel %d, %s, no module.\n", $num, $chan->fqn;
 		return;
 	}
-	my $sig = $default_zaptel_signalling{$type} || die "unknown default zaptel signalling for chan $chan type $type";
+	my $sig = $default_zaptel_signalling{$type} || die "unknown default zaptel signalling for chan $num type $type";
 	if ($type eq 'IN') {
 		printf "# astbanktype: input\n";
 	} elsif ($type eq 'OUT') {




More information about the svn-commits mailing list