diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-07-11 02:03:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:10:01 -0500 |
commit | 2caa112ae4988d4e14e0d34de94da307675777af (patch) | |
tree | 36783f5030da4476b04553d9c042c291e3737eaa /source4 | |
parent | 54fba07f0183d2e45eaf8658f2900445a312524d (diff) | |
download | samba-2caa112ae4988d4e14e0d34de94da307675777af.tar.gz samba-2caa112ae4988d4e14e0d34de94da307675777af.tar.bz2 samba-2caa112ae4988d4e14e0d34de94da307675777af.zip |
r16932: Consistanly use the macro for these DNs and attributes.
Andrew Bartlett
(This used to be commit dd6ca3342218aa25619a98d48e0efbbe31012c30)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/ldb_tdb/ldb_tdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/ldb_tdb/ldb_tdb.c b/source4/lib/ldb/ldb_tdb/ldb_tdb.c index 15f34db5e1..090151cad9 100644 --- a/source4/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/source4/lib/ldb/ldb_tdb/ldb_tdb.c @@ -927,7 +927,7 @@ static int ltdb_sequence_number(struct ldb_module *module, struct ldb_request *r { TALLOC_CTX *tmp_ctx = talloc_new(req); struct ldb_message *msg = NULL; - struct ldb_dn *dn = ldb_dn_explode(tmp_ctx, "@BASEINFO"); + struct ldb_dn *dn = ldb_dn_explode(tmp_ctx, LTDB_BASEINFO); int tret; if (tmp_ctx == NULL) { @@ -949,7 +949,7 @@ static int ltdb_sequence_number(struct ldb_module *module, struct ldb_request *r return LDB_SUCCESS; } - req->op.seq_num.seq_num = ldb_msg_find_uint64(msg, "sequenceNumber", 0); + req->op.seq_num.seq_num = ldb_msg_find_uint64(msg, LTDB_SEQUENCE_NUMBER, 0); talloc_free(tmp_ctx); return LDB_SUCCESS; } |