summaryrefslogtreecommitdiff
path: root/libcli/nbt/namerefresh.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcli/nbt/namerefresh.c')
-rw-r--r--libcli/nbt/namerefresh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcli/nbt/namerefresh.c b/libcli/nbt/namerefresh.c
index 37bf0fc8f1..77f9cbd45c 100644
--- a/libcli/nbt/namerefresh.c
+++ b/libcli/nbt/namerefresh.c
@@ -234,11 +234,11 @@ _PUBLIC_ struct composite_context *nbt_name_refresh_wins_send(struct nbt_name_so
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;