summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-02-04 16:02:58 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-02-04 16:02:58 +0000
commitbb8c9705e15f7307b35ec237c6da2255822620e3 (patch)
treefff854dbf52f527378269c0781ea47a50b42b28f
parente7ff99d1cc0e926bc72a007dca62fd083aef3c4a (diff)
Fix generated context for MFC/R2 config
xpp rev: 7733 git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@7992 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm b/xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm
index 613566a..7ade82a 100644
--- a/xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm
+++ b/xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm
@@ -46,7 +46,7 @@ sub gen_openr2($$$) {
my $termtype = $span->termtype() || die "$0: Span #$num -- unkown termtype [NT/TE]\n";
my $type = $span->type;
# Fake type for signalling
- my $faketype = ($termtype eq 'TE') ? 'FXO' : 'FXS';
+ my $faketype = ($termtype eq 'TE') ? 'E1_TE' : 'E1_TE';
my $group = $gconfig->{'group'}{"$type"};
die "$0: missing default group (termtype=$termtype)\n" unless defined($group);
my $context = $gconfig->{'context'}{"$faketype"};