1 Add build option to disable utmpx update code
3 On some embedded systems the libc may have utmpx support, but the
4 feature would be redundant. So add a build switch to disable utmpx
5 updating, similar to compiling on systems without utmpx support.
7 Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>
9 diff -ru vsftpd-3.0.2.orig/builddefs.h vsftpd-3.0.2/builddefs.h
10 --- vsftpd-3.0.2.orig/builddefs.h 2012-04-05 05:24:56.000000000 +0200
11 +++ vsftpd-3.0.2/builddefs.h 2014-09-16 14:23:36.128003245 +0200
13 #undef VSF_BUILD_TCPWRAPPERS
16 +#define VSF_BUILD_UTMPX
18 #endif /* VSF_BUILDDEFS_H */
20 diff -ru vsftpd-3.0.2.orig/sysdeputil.c vsftpd-3.0.2/sysdeputil.c
21 --- vsftpd-3.0.2.orig/sysdeputil.c 2012-09-16 06:18:04.000000000 +0200
22 +++ vsftpd-3.0.2/sysdeputil.c 2014-09-16 14:26:42.686887724 +0200
25 #endif /* !VSF_SYSDEP_NEED_OLD_FD_PASSING */
27 -#ifndef VSF_SYSDEP_HAVE_UTMPX
28 +#if !defined(VSF_BUILD_UTMPX) || !defined(VSF_SYSDEP_HAVE_UTMPX)
31 vsf_insert_uwtmp(const struct mystr* p_user_str,
36 -#else /* !VSF_SYSDEP_HAVE_UTMPX */
37 +#else /* !VSF_BUILD_UTMPX || !VSF_SYSDEP_HAVE_UTMPX */
39 /* IMHO, the pam_unix module REALLY should be doing this in its SM component */
42 updwtmpx(WTMPX_FILE, &s_utent);
45 -#endif /* !VSF_SYSDEP_HAVE_UTMPX */
46 +#endif /* !VSF_BUILD_UTMPX || !VSF_SYSDEP_HAVE_UTMPX */
49 vsf_set_die_if_parent_dies()