Blame SOURCES/autofs-5.1.1-fix-missing-source-sss-in-multi-map-lookup.patch

4d476f
autofs-5.1.1 - fix missing source sss in multi map lookup
4d476f
4d476f
From: Ian Kent <raven@themaw.net>
4d476f
4d476f
The sss source isn't accounted for in the multi map lookup module.
4d476f
4d476f
Signed-off-by: Ian Kent <raven@themaw.net>
4d476f
---
4d476f
 CHANGELOG              |    1 +
4d476f
 modules/lookup_multi.c |    3 ++-
4d476f
 2 files changed, 3 insertions(+), 1 deletion(-)
4d476f
4d476f
--- autofs-5.0.7.orig/CHANGELOG
4d476f
+++ autofs-5.0.7/CHANGELOG
4d476f
@@ -193,6 +193,7 @@
4d476f
 - fix config old name lookup.
4d476f
 - fix error handling on ldap bind fail.
4d476f
 - fix gcc5 complaints.
4d476f
+- fix missing source sss in multi map lookup.
4d476f
 
4d476f
 25/07/2012 autofs-5.0.7
4d476f
 =======================
4d476f
--- autofs-5.0.7.orig/modules/lookup_multi.c
4d476f
+++ autofs-5.0.7/modules/lookup_multi.c
4d476f
@@ -58,7 +58,8 @@ static struct lookup_mod *nss_open_looku
4d476f
 	    !strncmp(argv[0], "nisplus", 7) ||
4d476f
 	    !strncmp(argv[0], "nis", 3) ||
4d476f
 	    !strncmp(argv[0], "ldaps", 5) ||
4d476f
-	    !strncmp(argv[0], "ldap", 4)) {
4d476f
+	    !strncmp(argv[0], "ldap", 4) ||
4d476f
+	    !strncmp(argv[0], "sss", 3)) {
4d476f
 		const char *fmt = strchr(argv[0], ',');
4d476f
 		if (fmt)
4d476f
 			fmt++;