s3:libsmbconf: use talloc_free instead of TALLOC_FREE in smbconf.c
authorMichael Adam <obnox@samba.org>
Wed, 21 Jan 2009 16:10:20 +0000 (17:10 +0100)
committerMichael Adam <obnox@samba.org>
Thu, 19 Mar 2009 17:03:53 +0000 (18:03 +0100)
Michael

Signed-off-by: Michael Adam <obnox@samba.org>
source/lib/smbconf/smbconf.c

index 396feab02d5c3d57e8f78613b637733a5bae623b..2d4f635f85407b6c19fa264d687f9b0ec8dd8d71 100644 (file)
@@ -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;
 }