summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-08-02 23:05:15 +0000
committerRichard Levitte <levitte@openssl.org>2000-08-02 23:05:15 +0000
commit51b66427c96265b5202c01b0a58daa7f6c2caac0 (patch)
tree91dd3aa8cfb783468c33cdda77f75d10309f83f8 /crypto/bio
parent69764d720a8b9c2d450fa00cfc7cfe8a623d223b (diff)
*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));
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bss_log.c2
1 files changed, 1 insertions, 1 deletions
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)