summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2009-10-12 11:24:30 +0200
committerKarolin Seeger <kseeger@samba.org>2009-10-12 11:47:27 +0200
commitcdf190a5030291807ea30481c8fee67c6b6187d5 (patch)
treeec04e335e46c992258e6b01be229693110262824
parent42aea0d90745235efc57d35b96a54a2dc834aa14 (diff)
downloadsamba-cdf190a5030291807ea30481c8fee67c6b6187d5.tar.gz
s3:wbc_sid: Fix build.
Use talloc_free instead of TALLOC_FREE. Signed-off-by: Volker Lendecke <vl@samba.org> (cherry picked from commit 95389ecdeb2e1d9d9512210a92c05c7a2d753409)
-rw-r--r--source/nsswitch/libwbclient/wbc_sid.c4
1 files 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;