]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:wbc_sid: Fix build.
authorKarolin Seeger <kseeger@samba.org>
Mon, 12 Oct 2009 09:24:30 +0000 (11:24 +0200)
committerKarolin Seeger <kseeger@samba.org>
Mon, 12 Oct 2009 09:24:30 +0000 (11:24 +0200)
Use talloc_free instead of TALLOC_FREE.

Signed-off-by: Volker Lendecke <vl@samba.org>
source/nsswitch/libwbclient/wbc_sid.c

index d86e159b5f071784ff7019d8d6a6b37a771ad52c..856b8b4b379e3f8ef01064d3a2d6586554855226 100644 (file)
@@ -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;