1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r20582: use void *data in the ldb_extended struct to match what we have in ldb_control

add a request element for extended requests

metze
This commit is contained in:
Stefan Metzmacher 2007-01-06 09:25:54 +00:00 committed by Gerald (Jerry) Carter
parent aababcbb05
commit 530b3cd250

View File

@ -683,8 +683,7 @@ struct ldb_result {
struct ldb_extended {
const char *oid;
const char *value;
int value_len;
void *data;
};
struct ldb_reply {
@ -714,7 +713,7 @@ struct ldb_add {
const struct ldb_message *message;
};
struct ldb_modify {
struct ldb_modify {
const struct ldb_message *message;
};
@ -756,9 +755,10 @@ struct ldb_request {
struct ldb_modify mod;
struct ldb_delete del;
struct ldb_rename rename;
struct ldb_extended extended;
struct ldb_sequence_number seq_num;
struct ldb_register_control reg_control;
struct ldb_register_partition reg_partition;
struct ldb_sequence_number seq_num;
} op;
struct ldb_control **controls;