diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-06 20:15:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:35 -0500 |
commit | 8408b3428d8c263f8453a0da8ef71e7fc1e4ec81 (patch) | |
tree | 4c8b4a7686f730333fdf137c28166c7c561414b0 /source4/torture/ldap/basic.c | |
parent | eee5cc3b9a6fe7cdc1fa81fac8ce524391bee519 (diff) | |
download | samba-8408b3428d8c263f8453a0da8ef71e7fc1e4ec81.tar.gz samba-8408b3428d8c263f8453a0da8ef71e7fc1e4ec81.tar.xz samba-8408b3428d8c263f8453a0da8ef71e7fc1e4ec81.zip |
r3583: - seperate the ldap client code and the ldap parsing code
(vl: we should only sync the parsing code with trunk)
- use hierachical talloc in the ldap client code
metze
(This used to be commit 1e9c0b68ca9ddb28877d45fc1b47653b13a7446d)
Diffstat (limited to 'source4/torture/ldap/basic.c')
-rw-r--r-- | source4/torture/ldap/basic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/ldap/basic.c b/source4/torture/ldap/basic.c index 4a0ae772d2e..8b1aca05f41 100644 --- a/source4/torture/ldap/basic.c +++ b/source4/torture/ldap/basic.c @@ -82,7 +82,7 @@ static BOOL test_search_rootDSE(struct ldap_connection *conn, char **basedn) conn->searchid = 0; conn->next_msgid = 30; - msg = new_ldap_message(); + msg = new_ldap_message(conn); if (!msg) { return False; } @@ -147,7 +147,7 @@ static BOOL test_compare_sasl(struct ldap_connection *conn, const char *basedn) conn->next_msgid = 55; - msg = new_ldap_message(); + msg = new_ldap_message(conn); if (!msg) { return False; } @@ -200,7 +200,7 @@ BOOL torture_ldap_basic(void) url = talloc_asprintf(mem_ctx, "ldap://%s/", host); - status = torture_ldap_connection(&conn, url, userdn, secret); + status = torture_ldap_connection(mem_ctx, &conn, url, userdn, secret); if (!NT_STATUS_IS_OK(status)) { return False; } |