From: Michael Adam Date: Wed, 21 Jan 2009 16:10:20 +0000 (+0100) Subject: s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c X-Git-Tag: build_3.3.2_ctdb_1~74 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=13e25b5d573e08b4fcf3fde3cc05dcb64f385b8f;p=obnox%2Fsamba-ctdb.git s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c Michael Signed-off-by: Michael Adam --- diff --git a/source/lib/smbconf/smbconf.c b/source/lib/smbconf/smbconf.c index 396feab02d..2d4f635f85 100644 --- a/source/lib/smbconf/smbconf.c +++ b/source/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; }