mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Deleted unneeded unbind.c
This commit is contained in:
parent
73c87065fb
commit
8755c4e067
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user