Bugzilla – Attachment 53359 Details for
Bug 15006
Need to distinguish client timeout from login timeout
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 15006 Correct indentation of EXPORTs in Sip.pm
Bug-15006-Correct-indentation-of-EXPORTs-in-Sippm.patch (text/plain), 1.82 KB, created by
Srdjan Jankovic
on 2016-07-13 00:58:29 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 15006 Correct indentation of EXPORTs in Sip.pm
Filename:
MIME Type:
Creator:
Srdjan Jankovic
Created:
2016-07-13 00:58:29 UTC
Size:
1.82 KB
patch
obsolete
>From 59b9777cb2eda893f4e83f3170677d641c983f0f Mon Sep 17 00:00:00 2001 >From: Colin Campbell <colin.campbell@ptfs-europe.com> >Date: Wed, 6 Jul 2016 15:25:21 +0100 >Subject: [PATCH] Bug 15006 Correct indentation of EXPORTs in Sip.pm > >Removed tabs and used spaces consistently >Used 'use base' to remove unnecessary BEGIN sub and >explicit setting of ISA at application level > >Signed-off-by: Srdjan <srdjan@catalyst.net.nz> >--- > C4/SIP/Sip.pm | 31 +++++++++++++------------------ > 1 file changed, 13 insertions(+), 18 deletions(-) > >diff --git a/C4/SIP/Sip.pm b/C4/SIP/Sip.pm >index ec549e6..15bb9a3 100644 >--- a/C4/SIP/Sip.pm >+++ b/C4/SIP/Sip.pm >@@ -16,24 +16,19 @@ use IO::Handle; > use C4::SIP::Sip::Constants qw(SIP_DATETIME FID_SCREEN_MSG); > use C4::SIP::Sip::Checksum qw(checksum); > >-use vars qw(@ISA @EXPORT_OK %EXPORT_TAGS); >- >-BEGIN { >- @ISA = qw(Exporter); >- >- @EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count >- denied sipbool boolspace write_msg get_timeout >- $error_detection $protocol_version $field_delimiter >- $last_response); >- >- %EXPORT_TAGS = ( >- all => [qw(y_or_n timestamp add_field maybe_add >- add_count denied sipbool boolspace write_msg >- get_timeout >- $error_detection $protocol_version >- $field_delimiter $last_response)]); >-} >- >+use base qw(Exporter); >+ >+our @EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count >+ denied sipbool boolspace write_msg get_timeout >+ $error_detection $protocol_version $field_delimiter >+ $last_response); >+ >+our %EXPORT_TAGS = ( >+ all => [qw(y_or_n timestamp add_field maybe_add >+ add_count denied sipbool boolspace write_msg >+ get_timeout >+ $error_detection $protocol_version >+ $field_delimiter $last_response)]); > > our $error_detection = 0; > our $protocol_version = 1; >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15006
:
45039
|
45583
|
45594
|
52477
|
52478
|
52479
|
52480
|
52784
|
52785
|
52786
|
52787
|
52849
|
52850
|
52851
|
52852
|
52853
|
53009
|
53010
|
53011
|
53012
|
53013
|
53014
|
53132
|
53133
|
53134
|
53135
|
53309
|
53310
|
53311
|
53312
|
53355
|
53356
|
53357
|
53358
|
53359
|
53360
|
53363
|
53364
|
53365
|
53366
|
53367
|
53368
|
53369