From: Mike Gilbert Date: Mon, 26 Jun 2023 05:17:16 +0000 (-0400) Subject: Ensure there is a '/' between PPP_PATH_VARRUN and the PID filename (#427) X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;ds=sidebyside;h=091e69b4e612427eeb95410dbc73eff10ea5dadb;p=ppp.git 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 --- diff --git a/pppd/main.c b/pppd/main.c index 4455199..c207d10 100644 --- a/pppd/main.c +++ b/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);