From 9d80f9dc6b7d87bdf2e1536647a0bc8530465bd7 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 18 Apr 2019 11:54:07 +0000 Subject: [PATCH] Bug 15253: (follow-up) Fix qa complaints Signed-off-by: Nick Clemens --- C4/SIP/SIPServer.pm | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm index 2b73b98..8daa627 100755 --- a/C4/SIP/SIPServer.pm +++ b/C4/SIP/SIPServer.pm @@ -33,6 +33,12 @@ use constant LOG_SIP => "local6"; # Local alias for the logging facility # A script with no MAIN namespace? # A module that takes command line args? +=head1 NAME + +C4::SIP::SIPServer + +=cut + # Set interface to 'sip' C4::Context->interface('sip'); @@ -432,7 +438,7 @@ sub get_timeout { sub get_SIPServer { unless($activeSIPServer) { my @cc = caller(1); - die "$cc[3]() asks for \$activeSIPServer, but he is not defined yet"; + die "$cc[3]() asks for \$activeSIPServer, but it is not defined yet"; } return $activeSIPServer; } @@ -458,7 +464,7 @@ sub _set_SIPServer { sub get_logger { unless($activeLogger) { my @cc = caller(1); - die "$cc[3]() asks for \$activeLogger, but he is not defined yet"; + die "$cc[3]() asks for \$activeLogger, but it is not defined yet"; } return $activeLogger; } -- 1.7.2.5