summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/back-ldif/unbind.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldap/servers/slapd/back-ldif/unbind.c')
-rw-r--r--ldap/servers/slapd/back-ldif/unbind.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/ldap/servers/slapd/back-ldif/unbind.c b/ldap/servers/slapd/back-ldif/unbind.c
new file mode 100644
index 00000000..77c45adb
--- /dev/null
+++ b/ldap/servers/slapd/back-ldif/unbind.c
@@ -0,0 +1,27 @@
+/** BEGIN COPYRIGHT BLOCK
+ * Copyright 2001 Sun Microsystems, Inc.
+ * Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
+ * All rights reserved.
+ * END COPYRIGHT BLOCK **/
+/*
+ * File: unbind.c
+ *
+ * Functions:
+ *
+ * ldif_back_unbind() - ldap ldif back-end unbind routine
+ *
+ */
+#include "back-ldif.h"
+
+/*
+ * Function: ldif_back_unbind
+ *
+ * Returns: returns 0
+ *
+ * Description: performs an ldap unbind.
+ */
+int
+ldif_back_unbind( Slapi_PBlock *pb )
+{
+ return( 0 );
+}