commit a62613cc4a670927a11e20d88e823072f547342e parent e56da85c186df813c7801524dda79d70a9bbabff Author: Cem Keylan <cem@ckyln.com> Date: Sat, 10 Oct 2020 15:59:30 +0300 proc.c: No need to print error, pid file might not be there Diffstat:
M | libutil/proc.c | | | 1 | - |
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/libutil/proc.c b/libutil/proc.c @@ -30,7 +30,6 @@ getsyspid(service *sv) pid_t pid; if (access(sv->syspidfile, R_OK) == -1) { - perror(sv->syspidfile); return -1; } FILE *pidfile;