1From 8b845fff891798a03bdf21354b52e4487c2c0200 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 5dcae19..b2c58f5 100644 21--- a/configure.ac 22+++ b/configure.ac 23@@ -204,7 +204,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 53