From 13367fd49a01e2dc575cfdc48b1df1eea047e1d3 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 --- 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; -- 2.20.1