1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00

r574: - another attempt at const cleanliness in ldb

- fixed a problem with searching for values containing an '=' sign

 - fixed the semantics of attempting an attribute deletion on an attribute that doesn't exist.

 - added some more ldb_msg_*() utilities
This commit is contained in:
Andrew Tridgell
2004-05-07 23:54:41 +00:00
committed by Gerald (Jerry) Carter
parent 993a18dd35
commit 62b4ec367d
13 changed files with 111 additions and 37 deletions

View File

@@ -210,7 +210,7 @@ static int lldb_add_msg_attr(struct ldb_context *ldb,
*/
static int lldb_search(struct ldb_context *ldb, const char *base,
enum ldb_scope scope, const char *expression,
char * const *attrs, struct ldb_message ***res)
const char * const *attrs, struct ldb_message ***res)
{
struct lldb_private *lldb = ldb->private_data;
int count, msg_count;