From 6de98ba10bc9c66a068b0e37f0910a6b073f75c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Mon, 22 Feb 2010 21:19:27 +0100 Subject: 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. --- source4/torture/ldap/basic.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'source4/torture/ldap') diff --git a/source4/torture/ldap/basic.c b/source4/torture/ldap/basic.c index 87719f81ace..6498a689b97 100644 --- a/source4/torture/ldap/basic.c +++ b/source4/torture/ldap/basic.c @@ -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"); -- cgit v1.2.1