From 218f482fbfe96b2cddec8c05f6b8f174481d2e27 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 12 Oct 2008 00:56:56 +0200 Subject: Use common strlist implementation in Samba 3 and Samba 4. --- libcli/nbt/nameregister.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcli/nbt/nameregister.c') diff --git a/libcli/nbt/nameregister.c b/libcli/nbt/nameregister.c index d4728a8e02..d9e616fecc 100644 --- a/libcli/nbt/nameregister.c +++ b/libcli/nbt/nameregister.c @@ -372,11 +372,11 @@ _PUBLIC_ struct composite_context *nbt_name_register_wins_send(struct nbt_name_s if (state->io == NULL) goto failed; state->wins_port = io->in.wins_port; - state->wins_servers = str_list_copy(state, io->in.wins_servers); + state->wins_servers = (const char **)str_list_copy(state, io->in.wins_servers); if (state->wins_servers == NULL || state->wins_servers[0] == NULL) goto failed; - state->addresses = str_list_copy(state, io->in.addresses); + state->addresses = (const char **)str_list_copy(state, io->in.addresses); if (state->addresses == NULL || state->addresses[0] == NULL) goto failed; -- cgit