mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 20:40:13 -04:00
26 lines
560 B
Plaintext
26 lines
560 B
Plaintext
$NetBSD: patch-ah,v 1.1 2006/07/23 15:00:41 taca Exp $
|
|
|
|
--- log.c.orig 2002-01-20 23:19:43.000000000 +0900
|
|
+++ log.c
|
|
@@ -73,7 +73,7 @@
|
|
{
|
|
syslog_fd = fd_before;
|
|
if (cnf.debug & DEBUG_TRANS)
|
|
- log(LOG_DEBUG, "file descriptor for syslog: %d", syslog_fd);
|
|
+ mylog(LOG_DEBUG, "file descriptor for syslog: %d", syslog_fd);
|
|
}
|
|
#endif
|
|
}
|
|
@@ -85,9 +85,9 @@
|
|
|
|
void
|
|
# ifdef __STDC__
|
|
-log(int level, const char *fmt, ...)
|
|
+mylog(int level, const char *fmt, ...)
|
|
# else
|
|
-log(level, fmt, va_alist)
|
|
+mylog(level, fmt, va_alist)
|
|
int level;
|
|
char *fmt;
|
|
va_dcl
|