diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-12 00:56:56 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-12 00:56:56 +0200 |
commit | 218f482fbfe96b2cddec8c05f6b8f174481d2e27 (patch) | |
tree | f54c33f277840e089793fff8547b05875546eac5 /libcli/nbt | |
parent | cb78d4593b5ac4eaa0cbead6f86027d040a9e88a (diff) | |
download | samba-218f482fbfe96b2cddec8c05f6b8f174481d2e27.tar.gz samba-218f482fbfe96b2cddec8c05f6b8f174481d2e27.tar.xz samba-218f482fbfe96b2cddec8c05f6b8f174481d2e27.zip |
Use common strlist implementation in Samba 3 and Samba 4.
Diffstat (limited to 'libcli/nbt')
-rw-r--r-- | libcli/nbt/namerefresh.c | 4 | ||||
-rw-r--r-- | libcli/nbt/nameregister.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libcli/nbt/namerefresh.c b/libcli/nbt/namerefresh.c index 37bf0fc8f12..77f9cbd45c3 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; diff --git a/libcli/nbt/nameregister.c b/libcli/nbt/nameregister.c index d4728a8e021..d9e616feccb 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; |