0d7e32d3cc
Factory only - Resolve user retrieval problems when encountering binary data in LDAP attributes (bnc#806078), OBS-URL: https://build.opensuse.org/request/show/157216 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sssd?expand=0&rev=43
29 lines
944 B
Diff
29 lines
944 B
Diff
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: 2013-02-21 09:09:59.418801298 +0100
|
|
Upstream: no
|
|
|
|
Whenever ldb has a version number update, memberof.so aborts sssd
|
|
loading. Arguably, LDB has not made any ABI stability promises
|
|
says
|
|
http://lists.fedorahosted.org/pipermail/sssd-devel/2013-February/013686.html
|
|
but they are at least trying to, by keeping some versioned symbols.
|
|
So, let's try this here for openSUSE.
|
|
|
|
---
|
|
src/ldb_modules/memberof.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
Index: sssd-1.9.4/src/ldb_modules/memberof.c
|
|
===================================================================
|
|
--- sssd-1.9.4.orig/src/ldb_modules/memberof.c
|
|
+++ sssd-1.9.4/src/ldb_modules/memberof.c
|
|
@@ -4570,8 +4570,5 @@ const struct ldb_module_ops ldb_memberof
|
|
|
|
int ldb_init_module(const char *version)
|
|
{
|
|
-#ifdef LDB_MODULE_CHECK_VERSION
|
|
- LDB_MODULE_CHECK_VERSION(version);
|
|
-#endif
|
|
return ldb_register_module(&ldb_memberof_module_ops);
|
|
}
|