From 1c788737d74d43e726842a76ed195191946929ca Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Fri, 6 Dec 2019 11:06:03 +0100 Subject: [PATCH] su: silence a useless warning When the requested shell matches the restricted shell, there is no reason to issue a warning, since we will be doing precisely as requested. Signed-off-by: Jouke Witteveen --- login-utils/su-common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/login-utils/su-common.c b/login-utils/su-common.c index 9bf0971b29..e671d822b0 100644 --- a/login-utils/su-common.c +++ b/login-utils/su-common.c @@ -1149,6 +1149,7 @@ int su_main(int argc, char **argv, int mode) shell = getenv("SHELL"); if (shell + && strcmp(shell, su->pwd->pw_shell) && getuid() != 0 && is_restricted_shell(su->pwd->pw_shell)) { /* The user being su'd to has a nonstandard shell, and -- 2.47.2