From 0f0c1319be7a6a44be1d4618b57bb658be4021e0 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 26 Dec 1995 05:03:11 +0000 Subject: Apply ports/net/sup/patches/patch-aa... --- usr.sbin/sup/lib/log.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'usr.sbin/sup/lib/log.c') diff --git a/usr.sbin/sup/lib/log.c b/usr.sbin/sup/lib/log.c index 4879cf7..2974b4a 100644 --- a/usr.sbin/sup/lib/log.c +++ b/usr.sbin/sup/lib/log.c @@ -27,6 +27,11 @@ ********************************************************************** * HISTORY * $Log: log.c,v $ + * Revision 1.1.1.1 1995/12/26 04:54:47 peter + * Import the unmodified version of the sup that we are using. + * The heritage of this version is not clear. It appears to be NetBSD + * derived from some time ago. + * * Revision 1.1.1.1 1993/08/21 00:46:33 jkh * Current sup with compression support. * @@ -52,8 +57,13 @@ */ #include +#ifdef __hpux +#include +#include +#else #include #include +#endif #if __STDC__ #include #else @@ -72,7 +82,7 @@ logopen(program) char *program; { if (opened) return; - openlog(program,LOG_PID,LOG_DAEMON); + openlog(program,LOG_PID,LOG_LOCAL1); opened++; } -- cgit v1.1