1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s4:torture/ldap/basic.c - add some "const"

In addition I removed a "talloc_free(req)" since we never free elsewhere the
requests explicitly and do it only indirectly with freeing the "conn" object
when the testsuite terminates.
This commit is contained in:
Matthias Dieter Wallnöfer 2010-02-22 21:19:27 +01:00
parent 73bfd9de5d
commit 6de98ba10b

View File

@ -78,7 +78,7 @@ static bool test_multibind(struct ldap_connection *conn, const char *userdn, con
return ret;
}
static bool test_search_rootDSE(struct ldap_connection *conn, char **basedn)
static bool test_search_rootDSE(struct ldap_connection *conn, const char **basedn)
{
bool ret = true;
struct ldap_message *msg, *result;
@ -140,8 +140,6 @@ static bool test_search_rootDSE(struct ldap_connection *conn, char **basedn)
}
}
talloc_free(req);
return ret;
}
@ -361,8 +359,8 @@ bool torture_ldap_basic(struct torture_context *torture)
const char *host = torture_setting_string(torture, "host", NULL);
const char *userdn = torture_setting_string(torture, "ldap_userdn", NULL);
const char *secret = torture_setting_string(torture, "ldap_secret", NULL);
char *url;
char *basedn;
const char *url;
const char *basedn;
mem_ctx = talloc_init("torture_ldap_basic");