diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-02-22 21:19:27 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-02-22 21:19:27 +0100 |
commit | 6de98ba10bc9c66a068b0e37f0910a6b073f75c2 (patch) | |
tree | 94c2f8b03988a7b6ed8daf20f3a86f1196d1d6aa /source4 | |
parent | 73bfd9de5de17de4b1fcccad1162fc8fb588c751 (diff) | |
download | samba-6de98ba10bc9c66a068b0e37f0910a6b073f75c2.tar.gz samba-6de98ba10bc9c66a068b0e37f0910a6b073f75c2.tar.bz2 samba-6de98ba10bc9c66a068b0e37f0910a6b073f75c2.zip |
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.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/ldap/basic.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source4/torture/ldap/basic.c b/source4/torture/ldap/basic.c index 87719f81ac..6498a689b9 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"); |