From cdf190a5030291807ea30481c8fee67c6b6187d5 Mon Sep 17 00:00:00 2001 From: Karolin Seeger Date: Mon, 12 Oct 2009 11:24:30 +0200 Subject: [PATCH] s3:wbc_sid: Fix build. Use talloc_free instead of TALLOC_FREE. Signed-off-by: Volker Lendecke (cherry picked from commit 95389ecdeb2e1d9d9512210a92c05c7a2d753409) --- source/nsswitch/libwbclient/wbc_sid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/nsswitch/libwbclient/wbc_sid.c b/source/nsswitch/libwbclient/wbc_sid.c index d86e159b5f0..856b8b4b379 100644 --- a/source/nsswitch/libwbclient/wbc_sid.c +++ b/source/nsswitch/libwbclient/wbc_sid.c @@ -282,12 +282,12 @@ wbcErr wbcLookupSid(const struct wbcDomainSid *sid, if (pdomain != NULL) { *pdomain = domain; } else { - TALLOC_FREE(domain); + talloc_free(domain); } if (pname != NULL) { *pname = name; } else { - TALLOC_FREE(name); + talloc_free(name); } if (pname_type != NULL) { *pname_type = name_type; -- 2.11.4.GIT