diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-02-05 13:42:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:33 -0500 |
commit | c2c8650825b8c8625a97f318d50bcb1da6b92405 (patch) | |
tree | 48c390c52a87a2efea2c9a06fbdf4b20e27e69f1 /source4/libnet | |
parent | f9e222b5e35a59f5fe9e5ed6b4c725635c1bb053 (diff) | |
download | samba-c2c8650825b8c8625a97f318d50bcb1da6b92405.tar.gz samba-c2c8650825b8c8625a97f318d50bcb1da6b92405.tar.bz2 samba-c2c8650825b8c8625a97f318d50bcb1da6b92405.zip |
r21141: Attempt to fix the build
(This used to be commit 3f41a4b014a47b3c751066f5d1bef7f76f4be831)
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/libnet_join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libnet/libnet_join.c b/source4/libnet/libnet_join.c index a40c8607bf..f47ea410ae 100644 --- a/source4/libnet/libnet_join.c +++ b/source4/libnet/libnet_join.c @@ -1154,7 +1154,7 @@ static NTSTATUS libnet_Join_primary_domain(struct libnet_context *ctx, } cli_credentials_set_conf(creds); filter = talloc_asprintf(mem_ctx, "dn=%s", ldb_dn_get_linearized(msg->dn)); - status = cli_credentials_set_secrets(creds, NULL, filter); + status = cli_credentials_set_secrets(creds, NULL, NULL, filter); if (!NT_STATUS_IS_OK(status)) { r->out.error_string = talloc_asprintf(mem_ctx, "Failed to read secrets for keytab update for %s", filter); |