From c94fd054ca441f7ef6ea04dd268f495ec4884569 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 21 Jan 2009 17:10:20 +0100 Subject: s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c Michael --- source3/lib/smbconf/smbconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/smbconf/smbconf.c b/source3/lib/smbconf/smbconf.c index e5a865a62b..d723f0b140 100644 --- a/source3/lib/smbconf/smbconf.c +++ b/source3/lib/smbconf/smbconf.c @@ -64,7 +64,7 @@ bool smbconf_is_writeable(struct smbconf_ctx *ctx) */ void smbconf_shutdown(struct smbconf_ctx *ctx) { - TALLOC_FREE(ctx); + talloc_free(ctx); } /** @@ -157,7 +157,7 @@ WERROR smbconf_get_config(struct smbconf_ctx *ctx, } done: - TALLOC_FREE(tmp_ctx); + talloc_free(tmp_ctx); return werr; } -- cgit