1dedfbb334
Resolves: upstream#3588 - sssd_nss consumes more memory until restarted or machine swaps Resolves: failure in glibc tests https://sourceware.org/bugzilla/show_bug.cgi?id=22530 Resolves: upstream#3451 - When sssd is configured with id_provider proxy and auth_provider ldap, login fails if the LDAP server is not allowing anonymous binds Resolves: upstream#3285 - SSSD needs restart after incorrect clock is corrected with AD Resolves: upstream#3586 - Give a more detailed debug and system-log message if krb5_init_context() failed Resolves: rhbz#1431153 - SSSD ships a drop-in configuration snippet in /etc/systemd/system Backport few upstream features from 1.16.1
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 6d15db05c0975fed2b18cc52056fa29aedec823c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fidencio@redhat.com>
|
|
Date: Tue, 7 Nov 2017 09:09:55 +0100
|
|
Subject: [PATCH 39/79] TOOLS: Double quote array expansions in sss_debuglevel
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Otherwise they're like $* and break on spaces.
|
|
|
|
This issue has been caught by coverity:
|
|
Defect type: SHELLCHECK_WARNING
|
|
|
|
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
|
|
|
|
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
|
---
|
|
src/tools/wrappers/sss_debuglevel.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/tools/wrappers/sss_debuglevel.in b/src/tools/wrappers/sss_debuglevel.in
|
|
index 4deeafff6bf472dbe63578f57bfacee7b774d09f..aa19f790a26c67186123c87675d527f403b06264 100644
|
|
--- a/src/tools/wrappers/sss_debuglevel.in
|
|
+++ b/src/tools/wrappers/sss_debuglevel.in
|
|
@@ -1,4 +1,4 @@
|
|
#!/bin/sh
|
|
sbindir=@sbindir@
|
|
echo "Redirecting to $sbindir/sssctl debug-level" >&2
|
|
-$sbindir/sssctl debug-level $@
|
|
+$sbindir/sssctl debug-level "$@"
|
|
--
|
|
2.15.1
|
|
|