From: Colin Campbell <colin.campb...@ptfs-europe.com>

Remove the tabs causing inconsistent indentation
of sip_protocol_loop and replace with spaces

Reimplements the renaining parts of Marcel de Rooy's
original QA patch

No logic changes in this patch - layout only

Signed-off-by: Srdjan <srd...@catalyst.net.nz>
---
 C4/SIP/SIPServer.pm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm
index b3f67d4..0a76ca8 100755
--- a/C4/SIP/SIPServer.pm
+++ b/C4/SIP/SIPServer.pm
@@ -134,7 +134,7 @@ sub raw_transport {
 
     # Timeout the while loop if we get stuck in it
     # In practice it should only iterate once but be prepared
-    local $SIG{ALRM} = sub { die 'raw transport Timed Out!' }
+    local $SIG{ALRM} = sub { die 'raw transport Timed Out!' };
     syslog('LOG_DEBUG', "raw_transport: timeout is $service->{timeout}");
     alarm $service->{timeout};
     while (!$self->{account}) {
@@ -253,14 +253,14 @@ sub telnet_transport {
 # telnet transport.  From that point on, both the raw and the telnet
 # processes are the same:
 sub sip_protocol_loop {
-       my $self = shift;
-       my $service = $self->{service};
-       my $config  = $self->{config};
+    my $self = shift;
+    my $service = $self->{service};
+    my $config  = $self->{config};
     my $timeout = $self->{service}->{timeout} || $config->{timeout} || 30;
 
     # The spec says the first message will be:
-       #       SIP v1: SC_STATUS
-       #       SIP v2: LOGIN (or SC_STATUS via telnet?)
+    #     SIP v1: SC_STATUS
+    #     SIP v2: LOGIN (or SC_STATUS via telnet?)
     # But it might be SC_REQUEST_RESEND.  As long as we get
     # SC_REQUEST_RESEND, we keep waiting.
 
@@ -268,9 +268,9 @@ sub sip_protocol_loop {
     # constraint, so we'll relax about it too.
     # Using the SIP "raw" login process, rather than telnet,
     # requires the LOGIN message and forces SIP 2.00.  In that
-       # case, the LOGIN message has already been processed (above).
-       # 
-       # In short, we'll take any valid message here.
+    # case, the LOGIN message has already been processed (above).
+
+    # In short, we'll take any valid message here.
     eval {
         local $SIG{ALRM} = sub {
             syslog( 'LOG_DEBUG', 'Inactive: timed out' );
-- 
2.7.4
_______________________________________________
Koha-patches mailing list
Koha-patches@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to