summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch')
-rw-r--r--meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch b/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch
deleted file mode 100644
index fa1532c831..0000000000
--- a/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch
+++ /dev/null
@@ -1,52 +0,0 @@
1From 85d0444229ee3d14fefcf10d093f49c862826f82 Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Thu, 14 Apr 2022 23:11:53 +0000
4Subject: [PATCH] Disable use of syslog for shadow-native tools
5
6Disable use of syslog to prevent sysroot user and group additions from
7writing entries to the host's syslog. This patch should only be used
8with the shadow-native recipe.
9
10Upstream-Status: Inappropriate [OE specific configuration]
11Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
13
14---
15 configure.ac | 2 +-
16 src/login_nopam.c | 3 ++-
17 2 files changed, 3 insertions(+), 2 deletions(-)
18
19diff --git a/configure.ac b/configure.ac
20index 924254a..603af81 100644
21--- a/configure.ac
22+++ b/configure.ac
23@@ -191,7 +191,7 @@ AC_DEFINE_UNQUOTED(PASSWD_PROGRAM, "$shadow_cv_passwd_dir/passwd",
24 [Path to passwd program.])
25
26 dnl XXX - quick hack, should disappear before anyone notices :).
27-AC_DEFINE(USE_SYSLOG, 1, [Define to use syslog().])
28+#AC_DEFINE(USE_SYSLOG, 1, [Define to use syslog().])
29 if test "$ac_cv_func_ruserok" = "yes"; then
30 AC_DEFINE(RLOGIN, 1, [Define if login should support the -r flag for rlogind.])
31 AC_DEFINE(RUSEROK, 0, [Define to the ruserok() "success" return value (0 or 1).])
32diff --git a/src/login_nopam.c b/src/login_nopam.c
33index df6ba88..fc24e13 100644
34--- a/src/login_nopam.c
35+++ b/src/login_nopam.c
36@@ -29,7 +29,6 @@
37 #ifndef USE_PAM
38 #ident "$Id$"
39
40-#include "prototypes.h"
41 /*
42 * This module implements a simple but effective form of login access
43 * control based on login names and on host (or domain) names, internet
44@@ -57,6 +56,8 @@
45 #include <netinet/in.h>
46 #include <arpa/inet.h> /* for inet_ntoa() */
47
48+#include "prototypes.h"
49+
50 #if !defined(MAXHOSTNAMELEN) || (MAXHOSTNAMELEN < 64)
51 #undef MAXHOSTNAMELEN
52 #define MAXHOSTNAMELEN 256