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>
Wed, 21 Jan 2009 17:40:55 +0000 (18:40 +0100)
Michael

source3/lib/smbconf/smbconf.c

index e5a865a62bb22762a82a7d20a6a79b9cd382149b..d723f0b1408e25493d49d656606d1adb3b0d7ae0 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;
 }