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