summaryrefslogtreecommitdiffstats
path: root/package/network/services/ppp/patches/403-no_wtmp.patch
blob: 811c5faef8166a9f2dba00367a31eb47c8c934f1 (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 <jo@mein.io>

--- a/pppd/sys-linux.c
+++ b/pppd/sys-linux.c
@@ -2271,6 +2271,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
@@ -2336,6 +2337,7 @@ void logwtmp (const char *line, const ch
 	close (wtmp);
     }
 #endif
+#endif
 }
 #endif /* HAVE_LOGWTMP */