Bugzilla – Attachment 163616 Details for
Bug 36386
Prevent Net::Server warn about User Not Defined from SIPServer
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36386: Pass user and group to Net::Server
Bug-36386-Pass-user-and-group-to-NetServer.patch (text/plain), 861 bytes, created by
Marcel de Rooy
on 2024-03-21 14:19:36 UTC
(
hide
)
Description:
Bug 36386: Pass user and group to Net::Server
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2024-03-21 14:19:36 UTC
Size:
861 bytes
patch
obsolete
>From 3bb56ad1a8bfd38c5a60a2c4d672a3d989b680cc Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Thu, 21 Mar 2024 14:17:35 +0000 >Subject: [PATCH] Bug 36386: Pass user and group to Net::Server >Content-Type: text/plain; charset=utf-8 > >This prevents the User/Group Not Defined warns in syslog. > >Test plan: >Restart sip and check your syslog. >--- > C4/SIP/SIPServer.pm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/C4/SIP/SIPServer.pm b/C4/SIP/SIPServer.pm >index 995d448d84..d26f5e25e6 100644 >--- a/C4/SIP/SIPServer.pm >+++ b/C4/SIP/SIPServer.pm >@@ -82,7 +82,9 @@ if (defined($config->{'server-params'})) { > push @parms, $key . '=' . $val; > } > } >- >+# Add user and group to prevent warn from Net::Server. >+push @parms, 'user=' . $>; >+push @parms, 'group=' . $>; > > # > # This is the main event. >-- >2.30.2
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 36386
:
163616
|
163902
|
165028