mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
403f4479bc
Replace old Id as needed (back-tcl). Leave updating of contribWare to contributors (for now).
48 lines
693 B
C
48 lines
693 B
C
/* abandon.c - ldbm backend abandon routine */
|
|
/* $OpenLDAP$ */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/time.h>
|
|
#include <ac/unistd.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-bdb2.h"
|
|
|
|
|
|
/*ARGSUSED*/
|
|
static int
|
|
bdb2i_back_abandon_internal(
|
|
BackendDB *be,
|
|
Connection *c,
|
|
Operation *o,
|
|
int msgid )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int
|
|
bdb2_back_abandon(
|
|
BackendDB *be,
|
|
Connection *conn,
|
|
Operation *op,
|
|
int msgid )
|
|
{
|
|
struct timeval time1;
|
|
int ret;
|
|
|
|
bdb2i_start_timing( be->bd_info, &time1 );
|
|
|
|
ret = bdb2i_back_abandon_internal( be, conn, op, msgid );
|
|
|
|
bdb2i_stop_timing( be->bd_info, time1, "ABND", conn, op );
|
|
|
|
return( ret );
|
|
}
|
|
|
|
|