diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-08-01 22:46:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:15:19 -0500 |
commit | f685635e87923807c9fde843f57c02ded16caf09 (patch) | |
tree | 87b165e8af409ba388c7c20c0448bcbbd564bdba /source4/lib/ldb/include | |
parent | 529c5dae51c1e782e095bf96b7ab2ca95ccbb856 (diff) | |
download | samba-f685635e87923807c9fde843f57c02ded16caf09.tar.gz samba-f685635e87923807c9fde843f57c02ded16caf09.tar.bz2 samba-f685635e87923807c9fde843f57c02ded16caf09.zip |
r17368: Add 'const' to ldb_match_msg().
Andrew Bartlett
(This used to be commit 54eda4b85975c44c993a7dc45f6caa898076f163)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index b862daec86..f442202ee3 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -171,8 +171,8 @@ int ldb_tdb_init(void); int ldb_sqlite3_init(void); int ldb_match_msg(struct ldb_context *ldb, - struct ldb_message *msg, - struct ldb_parse_tree *tree, + const struct ldb_message *msg, + const struct ldb_parse_tree *tree, const struct ldb_dn *base, enum ldb_scope scope); |