From dfe3753deeddb40610a27ccc48ad71110c2bb350 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Tue, 30 Mar 2021 12:49:00 +0100 Subject: [PATCH] Bug 28054: Reinstate the shebang in SIPServer.pm Bug 26673 renoved the shebang from SIPServer.pm. This was an error SIPServer.pm is a program not a perl module, and needs the shebang for the OS to assign an interpreter unless the command line calls it as an argument to perl. Restore the shebang Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart --- C4/SIP/SIPServer.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm index 8d5be71624..f1c1ae448b 100644 --- a/C4/SIP/SIPServer.pm +++ b/C4/SIP/SIPServer.pm @@ -1,3 +1,5 @@ +#!/usr/bin/perl + package C4::SIP::SIPServer; use strict;