summaryrefslogtreecommitdiff
path: root/source3/nsswitch/wbinfo.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-20 22:13:40 +0200
committerMichael Adam <obnox@samba.org>2008-04-20 22:29:36 +0200
commitd7da0f57fa4564647637e025fd2f4c7ebd2e7293 (patch)
tree679434fb0b54e02c8fb2a5ed13e503765a9a94fe /source3/nsswitch/wbinfo.c
parent166efed281599ba331c379e474120ce5b46271f0 (diff)
downloadsamba-d7da0f57fa4564647637e025fd2f4c7ebd2e7293.tar.gz
samba-d7da0f57fa4564647637e025fd2f4c7ebd2e7293.tar.bz2
samba-d7da0f57fa4564647637e025fd2f4c7ebd2e7293.zip
libwbclient: fix wbcResolveWinsByName() to take char * instead of const char **
This fixes a compile warning and seems the correct thing to me as the returned data is talloc_strdup't, so not const anyways. Michael (This used to be commit 13cfa7f48a541a934a129fab0544cbf66029c4c7)
Diffstat (limited to 'source3/nsswitch/wbinfo.c')
-rw-r--r--source3/nsswitch/wbinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c
index ed49be7431..00d772a74c 100644
--- a/source3/nsswitch/wbinfo.c
+++ b/source3/nsswitch/wbinfo.c
@@ -300,7 +300,7 @@ static bool wbinfo_get_userdomgroups(const char *user_sid_str)
static bool wbinfo_wins_byname(const char *name)
{
wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
- const char *ip = NULL;
+ char *ip = NULL;
wbc_status = wbcResolveWinsByName(name, &ip);
if (!WBC_ERROR_IS_OK(wbc_status)) {