torture: Remove unused torture_ldap_connection2()
authorAndrew Bartlett <abartlet@samba.org>
Mon, 6 May 2019 02:09:49 +0000 (14:09 +1200)
committerGary Lockyer <gary@samba.org>
Mon, 6 May 2019 05:46:11 +0000 (05:46 +0000)
The last caller was removed by 'r7626: a new ldap client library'
in 2005 with bab977dad76e9204278c7afe0bb905cda064f488.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
source4/torture/ldap/common.c

index 9d53da4b01c222ac87a2b00d9a53f3988d659609..9482e0392bcc97862cbb4445e5379d1ec04c82f9 100644 (file)
@@ -76,23 +76,6 @@ NTSTATUS torture_ldap_connection(struct torture_context *tctx,
        return status;
 }
 
-/* open a ldap connection to a server */
-NTSTATUS torture_ldap_connection2(struct torture_context *tctx, struct ldap_connection **conn, 
-                               const char *url, const char *userdn, const char *password)
-{
-        NTSTATUS status;
-
-       status = torture_ldap_connection(tctx, conn, url);
-       NT_STATUS_NOT_OK_RETURN(status);
-
-       status = ldap_bind_simple(*conn, userdn, password);
-       if (!NT_STATUS_IS_OK(status)) {
-               printf("Failed a simple ldap bind - %s\n", ldap_errstr(*conn, tctx, status));
-       }
-       return status;
-}
-
 /* close an ldap connection to a server */
 NTSTATUS torture_ldap_close(struct ldap_connection *conn)
 {