]> git.sur5r.net Git - openldap/commitdiff
Deleted unneeded unbind.c
authorHoward Chu <hyc@openldap.org>
Sat, 2 Feb 2002 10:13:16 +0000 (10:13 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 2 Feb 2002 10:13:16 +0000 (10:13 +0000)
servers/slapd/back-perl/Makefile.in
servers/slapd/back-perl/external.h
servers/slapd/back-perl/unbind.c [deleted file]

index 84a8559de8dad3370cdb70a1677a4162d72d2ded..dd0b30d286ecbf5a79dd2c3df77b08b6349e38a3 100644 (file)
@@ -10,9 +10,9 @@
 # 
 ##########################################################################
 
-SRCS   = init.c search.c close.c config.c bind.c unbind.c compare.c \
+SRCS   = init.c search.c close.c config.c bind.c compare.c \
                modify.c add.c modrdn.c delete.c
-OBJS   = init.lo search.lo close.lo config.lo bind.lo unbind.lo compare.lo \
+OBJS   = init.lo search.lo close.lo config.lo bind.lo compare.lo \
                modify.lo add.lo modrdn.lo delete.lo
 
 LDAP_INCDIR= ../../../include       
index 5dce46eb72c4671ca37c2766d2aa9041062ebdbb..8962c5feed9fa0dad2777acb5cddf460587de03e 100644 (file)
@@ -16,8 +16,6 @@ extern BI_db_config   perl_back_db_config;
 
 extern BI_op_bind      perl_back_bind;
 
-extern BI_op_unbind    perl_back_unbind;
-
 extern BI_op_search    perl_back_search;
 
 extern BI_op_compare   perl_back_compare;
diff --git a/servers/slapd/back-perl/unbind.c b/servers/slapd/back-perl/unbind.c
deleted file mode 100644 (file)
index a79f906..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $OpenLDAP$ */
-/*
- *   Copyright 1999, John C. Quillan, All rights reserved.
- *
- *   Redistribution and use in source and binary forms are permitted only
- *   as authorized by the OpenLDAP Public License.  A copy of this
- *   license is available at http://www.OpenLDAP.org/license.html or
- *   in file LICENSE in the top-level directory of the distribution.
- */
-
-#include "portable.h"
- /* init.c - initialize shell backend */
-  
-#include <stdio.h>
-/*     #include <ac/types.h>
-       #include <ac/socket.h>
-*/
-
-#include <EXTERN.h>
-#include <perl.h>
-
-#include "slap.h"
-#include "perl_back.h"
-
-
-/**********************************************************
- *
- * UnBind
- *
- **********************************************************/
-int
-perl_back_unbind(
-       Backend *be,
-       Connection *conn,
-       Operation *op
-)
-{
-       Debug( LDAP_DEBUG_TRACE, "Perl UNBIND\n", 0, 0, 0 );
-       return 0;
-}
-