summaryrefslogtreecommitdiff
path: root/source3/nsswitch/wb_common.c
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2007-02-16 19:49:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:02 -0500
commit2b302791695fe29af369c3c17dc740f45d3cadd9 (patch)
treef33ba9f90570d21138c0115b6a923ee1be6f6065 /source3/nsswitch/wb_common.c
parent4a18f37f22f7bfbfecd479d5e5363427c8e9a7ca (diff)
downloadsamba-2b302791695fe29af369c3c17dc740f45d3cadd9.tar.gz
samba-2b302791695fe29af369c3c17dc740f45d3cadd9.tar.bz2
samba-2b302791695fe29af369c3c17dc740f45d3cadd9.zip
r21396: fix wbinfo --lookup-rids command
allow detection of libbiconv if all others fail - need for FreeBSD (This used to be commit 7acc9421b0643cb04bff1f1d98ecb899f9b09601)
Diffstat (limited to 'source3/nsswitch/wb_common.c')
-rw-r--r--source3/nsswitch/wb_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wb_common.c b/source3/nsswitch/wb_common.c
index 05d2a660e7..13cefd135d 100644
--- a/source3/nsswitch/wb_common.c
+++ b/source3/nsswitch/wb_common.c
@@ -504,7 +504,7 @@ int read_reply(struct winbindd_response *response)
/* Mallocate memory for extra data */
- if (!(response->extra_data.data = malloc(extra_data_len))) {
+ if (!(response->extra_data.data = SMB_MALLOC(extra_data_len))) {
return -1;
}