From 51b66427c96265b5202c01b0a58daa7f6c2caac0 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 2 Aug 2000 23:05:15 +0000 Subject: [PATCH] *mumble* unicos 10.0.0.3 with Cray Standard C Version 6.2.0.0 has a syslog.h where the openlog() is declared like this: extern int openlog __((char *_Ident, int _Logopt, int _Facility)); --- crypto/bio/bss_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c index d5f905b62b..05361e0700 100644 --- a/crypto/bio/bss_log.c +++ b/crypto/bio/bss_log.c @@ -350,7 +350,7 @@ static void xcloselog(BIO* bp) static void xopenlog(BIO* bp, const char* name, int level) { - openlog(name, LOG_PID|LOG_CONS, level); + openlog((char *)name, LOG_PID|LOG_CONS, level); } static void xsyslog(BIO *bp, int priority, const char *string) -- GitLab