From 1e31b548741443095679070638f5344cb5df1c9d Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Mon, 27 May 1996 00:01:53 +0000 Subject: [PATCH] syslog stuff back to main.c; removed set_filters --- pppd/sys-svr4.c | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/pppd/sys-svr4.c b/pppd/sys-svr4.c index d5c83b3..258cfae 100644 --- a/pppd/sys-svr4.c +++ b/pppd/sys-svr4.c @@ -26,7 +26,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: sys-svr4.c,v 1.10 1996/04/04 04:07:30 paulus Exp $"; +static char rcsid[] = "$Id: sys-svr4.c,v 1.11 1996/05/27 00:01:53 paulus Exp $"; #endif #include @@ -100,6 +100,7 @@ static int dlpi_info_req __P((int)); static int dlpi_get_reply __P((int, union DL_primitives *, int, int)); static int strioctl __P((int, int, void *, int, int)); + /* * sys_init - System-dependent initialization. */ @@ -115,11 +116,6 @@ sys_init() } reply; #endif - openlog("pppd", LOG_PID | LOG_NDELAY, LOG_PPP); - setlogmask(LOG_UPTO(LOG_INFO)); - if (debug) - setlogmask(LOG_UPTO(LOG_DEBUG)); - ipfd = open("/dev/ip", O_RDWR, 0); if (ipfd < 0) { syslog(LOG_ERR, "Couldn't open IP device: %m"); @@ -218,7 +214,6 @@ sys_close() close(ipfd); if (pppfd >= 0) close(pppfd); - closelog(); } /* @@ -254,19 +249,6 @@ daemon(nochdir, noclose) return 0; } -/* - * note_debug_level - note a change in the debug level. - */ -void -note_debug_level() -{ - if (debug) { - setlogmask(LOG_UPTO(LOG_DEBUG)); - } else { - setlogmask(LOG_UPTO(LOG_WARNING)); - } -} - /* * ppp_available - check whether the system has any ppp interfaces */ @@ -906,7 +888,7 @@ get_idle_time(u, ip) return strioctl(pppfd, PPPIO_GIDLE, ip, 0, sizeof(struct ppp_idle)) >= 0; } - +#if 0 /* * set_filters - transfer the pass and active filters to the kernel. */ @@ -932,7 +914,7 @@ set_filters(pass, active) } return ret; } - +#endif /* * ccp_fatal_error - returns 1 if decompression was disabled as a -- 2.39.2