dahdi-perl: more left-over $span->xpd
Replace the remaining $span->xpd with xpd_of_span(). Following up on r9648. git-svn-id: http://svn.astersk.org/svn/dahdi/tools/trunk@9731 17933a7a-c749-41c5-a318-cba88f637d49
This commit is contained in:
parent
d765176efd
commit
366eccb556
@ -229,7 +229,7 @@ sub battery($) {
|
|||||||
return undef unless defined $self->type && $self->type eq 'FXO';
|
return undef unless defined $self->type && $self->type eq 'FXO';
|
||||||
return $self->{BATTERY} if defined $self->{BATTERY};
|
return $self->{BATTERY} if defined $self->{BATTERY};
|
||||||
|
|
||||||
my $xpd = $span->xpd;
|
my $xpd = Dahdi::Xpp::xpd_of_span($span);
|
||||||
my $index = $self->index;
|
my $index = $self->index;
|
||||||
return undef if !$xpd;
|
return undef if !$xpd;
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ sub blink($$) {
|
|||||||
my $on = shift;
|
my $on = shift;
|
||||||
my $span = $self->span or die;
|
my $span = $self->span or die;
|
||||||
|
|
||||||
my $xpd = $span->xpd;
|
my $xpd = Dahdi::Xpp::xpd_of_span($span);
|
||||||
my $index = $self->index;
|
my $index = $self->index;
|
||||||
return undef if !$xpd;
|
return undef if !$xpd;
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@ sub gen_digital($$$) {
|
|||||||
if ($span->is_bri()) {
|
if ($span->is_bri()) {
|
||||||
my $use_bristuff = 0;
|
my $use_bristuff = 0;
|
||||||
my $cfg_hardhdlc = $gconfig->{'bri_hardhdlc'};
|
my $cfg_hardhdlc = $gconfig->{'bri_hardhdlc'};
|
||||||
my $xpd = $span->xpd();
|
my $xpd = Dahdi::Xpp::xpd_of_span($span);
|
||||||
if(!defined($cfg_hardhdlc) || $cfg_hardhdlc =~ /AUTO/i) {
|
if(!defined($cfg_hardhdlc) || $cfg_hardhdlc =~ /AUTO/i) {
|
||||||
# Autodetect
|
# Autodetect
|
||||||
if(defined($xpd)) {
|
if(defined($xpd)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user