blob: 0072e6666bdefabcd78ca3198eaa6ad74eb5ab3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
/*
* File: start.c
*
* Functions:
*
* ldif_back_start() - ldap ldif back-end start routine
*
*/
#include "back-ldif.h"
/*
* Function: ldif_back_start
*
* Returns: returns 0
*
* Description: After the config file is read, the backend start function is called.
* This allows the backend writer to start any threads or perform any
* operations that need to be done after the config file has been read in.
* The ldif backend requires no such operations to be performed.
*
*/
int
ldif_back_start( Slapi_PBlock *pb )
{
return( 0 );
}
|