aboutsummaryrefslogtreecommitdiffstats
path: root/package/ppp/patches/403-no_wtmp.patch
blob: 71233200e75c12ed5398d006d56a5ba43aa2d82f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pppd: Disable wtmp support

Many uClibc based environments lack wtmp and utmp support, therfore remove
the code updating the wtmp information.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

--- a/pppd/sys-linux.c
+++ b/pppd/sys-linux.c
@@ -2254,6 +2254,7 @@ int ppp_available(void)
 
 void logwtmp (const char *line, const char *name, const char *host)
 {
+#if 0
     struct utmp ut, *utp;
     pid_t  mypid = getpid();
 #if __GLIBC__ < 2
@@ -2319,6 +2320,7 @@ void logwtmp (const char *line, const ch
 	close (wtmp);
     }
 #endif
+#endif
 }