diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-17 11:52:24 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-05-18 13:20:18 +1000 |
commit | 6324a0f59f78dff6501627518824e708aa3dc257 (patch) | |
tree | 7d0c94e8da90c248bdbb9187a4ba651a2dfc0eb9 /source4 | |
parent | 00b985def82acfbc4e36121d5879c1ffae2c68a3 (diff) | |
download | samba-6324a0f59f78dff6501627518824e708aa3dc257.tar.gz samba-6324a0f59f78dff6501627518824e708aa3dc257.tar.bz2 samba-6324a0f59f78dff6501627518824e708aa3dc257.zip |
s4:provision Remove unused 'account_name' parameter
The python glue code didn't even de-reference this element in the
structure.
Andrew Bartlett
Diffstat (limited to 'source4')
-rw-r--r-- | source4/libnet/libnet_join.c | 1 | ||||
-rw-r--r-- | source4/libnet/libnet_vampire.c | 1 | ||||
-rw-r--r-- | source4/param/provision.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/source4/libnet/libnet_join.c b/source4/libnet/libnet_join.c index 748a791279..289756c76f 100644 --- a/source4/libnet/libnet_join.c +++ b/source4/libnet/libnet_join.c @@ -944,7 +944,6 @@ static NTSTATUS libnet_Join_primary_domain(struct libnet_context *ctx, ZERO_STRUCTP(set_secrets); set_secrets->domain_name = r2->out.domain_name; set_secrets->realm = r2->out.realm; - set_secrets->account_name = account_name; set_secrets->netbios_name = netbios_name; set_secrets->secure_channel_type = r->in.join_type; set_secrets->machine_password = r2->out.join_password; diff --git a/source4/libnet/libnet_vampire.c b/source4/libnet/libnet_vampire.c index a5c8a8f5d4..6d4481f977 100644 --- a/source4/libnet/libnet_vampire.c +++ b/source4/libnet/libnet_vampire.c @@ -766,7 +766,6 @@ NTSTATUS libnet_Vampire(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, ZERO_STRUCTP(set_secrets); set_secrets->domain_name = join->out.domain_name; set_secrets->realm = join->out.realm; - set_secrets->account_name = account_name; set_secrets->netbios_name = netbios_name; set_secrets->secure_channel_type = SEC_CHAN_BDC; set_secrets->machine_password = join->out.join_password; diff --git a/source4/param/provision.h b/source4/param/provision.h index b8277c358d..516a9dea5f 100644 --- a/source4/param/provision.h +++ b/source4/param/provision.h @@ -48,7 +48,6 @@ struct provision_store_self_join_settings { const char *domain_name; const char *realm; const char *netbios_name; - const char *account_name; enum netr_SchannelType secure_channel_type; const char *machine_password; int key_version_number; |