blob: ebf5eaea481201298c0484422df87fd0de7a060b (
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
32
33
34
35
36
37
38
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
#include "slapi-plugin.h"
#include "repl.h"
static int dumping_to_ldif= 0;
static int doing_replica_init= 0;
static char **include_suffix= NULL;
/*
* This is passed the slapd command line arguments.
*/
void
repl_entry_init(int argc, char** argv)
{
int i;
for(i=1;i<argc;i++)
{
if(strcmp(argv[i],"db2ldif")==0)
{
dumping_to_ldif= 1;
}
if(strcmp(argv[i],"-r")==0)
{
doing_replica_init= 1;
}
if(strcmp(argv[i],"-s")==0)
{
char *s= slapi_dn_normalize ( slapi_ch_strdup(argv[i+1]) );
charray_add(&include_suffix,s);
i++;
}
}
}
|