]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/module.c
Added ppolicy_hide_lockout keyword
[openldap] / servers / slapd / module.c
index c612a8673decfb5aa39f6241256cb8457be00a2a..a292422d16f96e2b2a128dc33e6939426c695522 100644 (file)
@@ -1,8 +1,18 @@
 /* $OpenLDAP$ */
-/*
- * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2004 The OpenLDAP Foundation.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in the file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
+
 #include "portable.h"
 #include <stdio.h>
 #include "slap.h"
@@ -125,7 +135,7 @@ int module_load(const char* file_name, int argc, char *argv[])
         * to calling Debug. This is because Debug is a macro that expands
         * into multiple function calls.
         */
-       if ((module->lib = lt_dlopen(file)) == NULL) {
+       if ((module->lib = lt_dlopenext(file)) == NULL) {
                error = lt_dlerror();
 #ifdef HAVE_EBCDIC
                strcpy( ebuf, error );
@@ -134,10 +144,10 @@ int module_load(const char* file_name, int argc, char *argv[])
 #endif
 #ifdef NEW_LOGGING
                LDAP_LOG( SLAPD, CRIT, 
-                       "module_load: lt_dlopen failed: (%s) %s.\n", 
+                       "module_load: lt_dlopenext failed: (%s) %s.\n", 
                        file_name, error, 0 );
 #else
-               Debug(LDAP_DEBUG_ANY, "lt_dlopen failed: (%s) %s\n", file_name,
+               Debug(LDAP_DEBUG_ANY, "lt_dlopenext failed: (%s) %s\n", file_name,
                        error, 0);
 #endif