summaryrefslogtreecommitdiffstats
path: root/acl-updater/plugin/interface.c
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-06-04 17:05:03 -0500
committerTimothy Pearson <[email protected]>2012-06-04 17:05:03 -0500
commitded257d2225a74343c32b3303ec3778da216b688 (patch)
tree37765cf04edbfea0f507ed0208de2bc89cc62ac8 /acl-updater/plugin/interface.c
parent085abd94d86b16825501b4215bd852fa546b31a9 (diff)
downloadkcmldapcontroller-ded257d2225a74343c32b3303ec3778da216b688.tar.gz
kcmldapcontroller-ded257d2225a74343c32b3303ec3778da216b688.zip
Add utility to manage kadmind ACL list based on group membership
Diffstat (limited to 'acl-updater/plugin/interface.c')
-rw-r--r--acl-updater/plugin/interface.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/acl-updater/plugin/interface.c b/acl-updater/plugin/interface.c
new file mode 100644
index 0000000..f73e0c0
--- /dev/null
+++ b/acl-updater/plugin/interface.c
@@ -0,0 +1,12 @@
+#ifdef HAVE_SLAPI_PLUGIN_H
+#include <slapi-plugin.h>
+#else
+#include "slapi-plugin.h"
+#endif
+
+int plugin_init (Slapi_PBlock *pb);
+int internal_plugin_init (Slapi_PBlock *pb);
+
+__attribute__ ((visibility ("default"))) int plugin_init (Slapi_PBlock *pb) {
+ internal_plugin_init(pb);
+} \ No newline at end of file