1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

r3754: merge in ldb modules support from the tmp branch ldbPlugins

This commit is contained in:
Simo Sorce
2004-11-15 11:40:27 +00:00
committed by Gerald (Jerry) Carter
parent 8e7e98ae5f
commit 71323f424b
22 changed files with 577 additions and 298 deletions

View File

@@ -304,6 +304,8 @@ static void usage(void)
const char *expression = NULL;
const char *ldb_url;
const char *basedn = NULL;
const char **options = NULL;
int ldbopts;
int opt;
enum ldb_scope scope = LDB_SCOPE_SUBTREE;
const char *editor;
@@ -321,7 +323,8 @@ static void usage(void)
editor = "vi";
}
while ((opt = getopt(argc, argv, "hab:e:H:s:v")) != EOF) {
ldbopts = 0;
while ((opt = getopt(argc, argv, "hab:e:H:s:vo:")) != EOF) {
switch (opt) {
case 'b':
basedn = optarg;
@@ -353,6 +356,21 @@ static void usage(void)
verbose++;
break;
case 'o':
ldbopts++;
if (options == NULL) {
options = (const char **)malloc(sizeof(char *) * (ldbopts + 1));
} else {
options = (const char **)realloc(options, sizeof(char *) * (ldbopts + 1));
if (options == NULL) {
fprintf(stderr, "Out of memory!\n");
exit(-1);
}
}
options[ldbopts - 1] = optarg;
options[ldbopts] = NULL;
break;
case 'h':
default:
usage();
@@ -381,7 +399,7 @@ static void usage(void)
attrs = (const char * const *)argv;
}
ldb = ldb_connect(ldb_url, 0, NULL);
ldb = ldb_connect(ldb_url, 0, options);
if (!ldb) {
perror("ldb_connect");