openldap/servers/slapd/back-ldbm/unbind.c
1998-08-09 00:43:13 +00:00

17 lines
232 B
C

/* unbind.c - handle an ldap unbind operation */
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "slap.h"
int
ldbm_back_unbind(
Backend *be,
Connection *conn,
Operation *op
)
{
return( 0 );
}