mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
f8b58757d0
0d004db Revert "pppd: Include time.h before using time_t" e400854 pppdump: Eliminate printf format warning by using %zd 7f2f0de pppd: Refactor setjmp/longjmp with pipe pair in event wait loop 4e71317 make: Avoid using host include for cross-compiling 3202f89 pppoe: Remove the use of cdefs d8e8d7a pppd: Remove unused rcsid variables 486f854 pppd: Fix GLIBC version test for non-glibc toolchains b6cd558 pppd: Include time.h before using time_t ef8ec11 radius: Fix compiler warning f6330ec magic: Remove K&R style of arguments 347904e Add Submitting-patches.md Remove patches 130-no_cdefs_h.patch, 131-missing_prototype_macro.patch, 132-fix_linux_includes.patch as fixed upstream Refresh patches Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
26 lines
572 B
Diff
26 lines
572 B
Diff
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 */
|
|
|