From: Karolin Seeger Date: Mon, 12 Oct 2009 09:24:30 +0000 (+0200) Subject: s3:wbc_sid: Fix build. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95389ecdeb2e1d9d9512210a92c05c7a2d753409;p=thirdparty%2Fsamba.git s3:wbc_sid: Fix build. Use talloc_free instead of TALLOC_FREE. Signed-off-by: Volker Lendecke --- 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;