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: samba-4.0.0alpha7~438^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c94fd054ca441f7ef6ea04dd268f495ec4884569;p=thirdparty%2Fsamba.git s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c Michael --- diff --git a/source3/lib/smbconf/smbconf.c b/source3/lib/smbconf/smbconf.c index e5a865a62bb..d723f0b1408 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; }