View | Details | Raw Unified | Return to bug 15006
Collapse All | Expand All

(-)a/C4/SIP/SIPServer.pm (-2 / +3 lines)
Lines 146-152 sub raw_transport { Link Here
146
            return;
146
            return;
147
        }
147
        }
148
        $input =~ s/[\r\n]+$//sm; # Strip off trailing line terminator(s)
148
        $input =~ s/[\r\n]+$//sm; # Strip off trailing line terminator(s)
149
        last if C4::SIP::Sip::MsgType::handle($input, $self, LOGIN);
149
        my $reg = qr/^${\(LOGIN)}/;
150
        last if $input !~ $reg ||
151
            C4::SIP::Sip::MsgType::handle($input, $self, LOGIN);
150
    }
152
    }
151
    alarm 0;
153
    alarm 0;
152
154
153
- 

Return to bug 15006