From: Joshua Rogers Date: Fri, 10 Oct 2025 12:56:12 +0000 (+0800) Subject: Clarify that setpgpid() is optional if not provided by the platform X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a64d3153c748a20ffde0474509913618c7138e3c;p=thirdparty%2Fopenssl.git Clarify that setpgpid() is optional if not provided by the platform Signed-off-by: Joshua Rogers Reviewed-by: Neil Horman Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28822) --- diff --git a/apps/ocsp.c b/apps/ocsp.c index 95a95f56cb9..1f8207bff9d 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -38,7 +38,7 @@ int setpgid(pid_t pid, pid_t pgid) { errno = ENOSYS; - return 0; + return 0; /* no error if setpgid() is not provided by platform */ } /* not supported */ pid_t fork(void)