svn commit: samba r11522 - in branches/SAMBA_4_0/source: auth
lib/ldb/ldb_ildap
Stefan Metzmacher
metze at samba.org
Mon Nov 7 14:17:35 GMT 2005
On Sat, Nov 05, 2005 at 11:13:23AM +0000, abartlet at samba.org wrote:
> @@ -590,6 +598,18 @@
>
> NT_STATUS_NOT_OK_RETURN(nt_status);
>
> + session_info->credentials = cli_credentials_init(session_info);
> + if (!session_info->credentials) {
> + return NT_STATUS_NO_MEMORY;
> + }
> +
> + cli_credentials_set_conf(session_info->credentials);
> + if (!NT_STATUS_IS_OK(cli_credentials_set_machine_account(session_info->credentials))) {
> + /* perhaps no credentials, we might not be joined to a domain */
> + talloc_free(session_info->credentials);
> + session_info->credentials = NULL;
> + }
> +
Hi Andrew,
with this we get a lot of Failed to connect '/secrets.ldb' warnings in make test,
the private_path() isn't initialized correctly from the ejs scripts,can you fix that?
metze
More information about the samba-technical
mailing list