Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP4:RebuildFactoryUpdates
ppp
ppp-pidfiles.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File ppp-pidfiles.patch of Package ppp
From 091e69b4e612427eeb95410dbc73eff10ea5dadb Mon Sep 17 00:00:00 2001 From: Mike Gilbert <floppym@gentoo.org> Date: Mon, 26 Jun 2023 01:17:16 -0400 Subject: [PATCH] Ensure there is a '/' between PPP_PATH_VARRUN and the PID filename (#427) Bug: https://bugs.gentoo.org/907311 Fixes: 66a8c74c3f73 ("Let ./configure control the paths for pppd", 2022-07-30) Signed-off-by: Mike Gilbert <floppym@gentoo.org> --- pppd/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- pppd/main.c.orig +++ pppd/main.c @@ -888,7 +888,7 @@ create_pidfile(int pid) { FILE *pidfile; - slprintf(pidfilename, sizeof(pidfilename), "%s%s.pid", + slprintf(pidfilename, sizeof(pidfilename), "%s/%s.pid", PPP_PATH_VARRUN, ifname); if ((pidfile = fopen(pidfilename, "w")) != NULL) { fprintf(pidfile, "%d\n", pid); @@ -907,7 +907,7 @@ create_linkpidfile(int pid) if (linkname[0] == 0) return; ppp_script_setenv("LINKNAME", linkname, 1); - slprintf(linkpidfile, sizeof(linkpidfile), "%sppp-%s.pid", + slprintf(linkpidfile, sizeof(linkpidfile), "%s/ppp-%s.pid", PPP_PATH_VARRUN, linkname); if ((pidfile = fopen(linkpidfile, "w")) != NULL) { fprintf(pidfile, "%d\n", pid);
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor