Commit 51b66427 authored by Richard Levitte's avatar Richard Levitte
Browse files

*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));
parent 69764d72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)