Skip to content
Snippets Groups Projects
Commit 8755c4e0 authored by Howard Chu's avatar Howard Chu
Browse files

Deleted unneeded unbind.c

parent 73c87065
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
/* $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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment