diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2021-01-10 13:20:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-03-09 00:28:26 +0100 |
commit | 39b71881b8173225c8ef85a308523d98cb590eac (patch) | |
tree | b2f73839f944adfbcf4e774042757b1c16169810 | |
parent | 67cc582d4289c5de521d11b08307c8ab26ee1e28 (diff) | |
download | busybox-w32-39b71881b8173225c8ef85a308523d98cb590eac.tar.gz busybox-w32-39b71881b8173225c8ef85a308523d98cb590eac.tar.bz2 busybox-w32-39b71881b8173225c8ef85a308523d98cb590eac.zip |
update_passwd: fix context variable
Commit
https://git.busybox.net/busybox/commit/libbb/update_passwd.c?id=2496616b0a8d1c80cd1416b73a4847b59b9f969a
changed the variable used from context to seuser but forgot this
change resulting in build errors detected by buildroot autobuilders:
http://autobuild.buildroot.net/results/b89/b89b7d0f0601bb706e76cea31cf4e43326e5540c//build-end.log
libbb/update_passwd.c:51:11: error: 'context' undeclared (first use in
this function); did you mean 'ucontext'?
freecon(context);
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/update_passwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/update_passwd.c b/libbb/update_passwd.c index 7b67f30cd..a228075cc 100644 --- a/libbb/update_passwd.c +++ b/libbb/update_passwd.c | |||
@@ -48,7 +48,7 @@ static void check_selinux_update_passwd(const char *username) | |||
48 | bb_simple_error_msg_and_die("SELinux: access denied"); | 48 | bb_simple_error_msg_and_die("SELinux: access denied"); |
49 | } | 49 | } |
50 | if (ENABLE_FEATURE_CLEAN_UP) | 50 | if (ENABLE_FEATURE_CLEAN_UP) |
51 | freecon(context); | 51 | freecon(seuser); |
52 | } | 52 | } |
53 | #else | 53 | #else |
54 | # define check_selinux_update_passwd(username) ((void)0) | 54 | # define check_selinux_update_passwd(username) ((void)0) |