[openssl-commits] [openssl] master update
paul.dale at oracle.com
paul.dale at oracle.com
Wed Mar 21 23:43:34 UTC 2018
The branch master has been updated
via aed3df20c105b6555ea2aeff559f2fab4ad4cefc (commit)
from e613b1eff40f21cd99240f9884cd3396b0ab50f1 (commit)
- Log -----------------------------------------------------------------
commit aed3df20c105b6555ea2aeff559f2fab4ad4cefc
Author: Pauli <paul.dale at oracle.com>
Date: Tue Mar 20 07:17:32 2018 +1000
Don't call strsignal, just print the signal number.
The strsignal call is not supported by some machines, so avoid its use.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5658)
-----------------------------------------------------------------------
Summary of changes:
apps/ocsp.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/apps/ocsp.c b/apps/ocsp.c
index 015f4d3..3c5534a 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -882,7 +882,6 @@ static void noteterm (int sig)
*/
static void spawn_loop(void)
{
- const char *signame;
pid_t *kidpids = NULL;
int status;
int procs = 0;
@@ -978,9 +977,7 @@ static void spawn_loop(void)
}
/* The loop above can only break on termsig */
- signame = strsignal(termsig);
- syslog(LOG_INFO, "terminating on signal: %s(%d)",
- signame ? signame : "", termsig);
+ syslog(LOG_INFO, "terminating on signal: %d", termsig);
killall(0, kidpids);
}
# endif
More information about the openssl-commits
mailing list