diff options
author | Günther Deschner <gd@samba.org> | 2008-03-04 11:07:13 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-04 11:07:13 +0100 |
commit | 5a4182012de914116798455793fd1963c2e65d28 (patch) | |
tree | d032ea32d5aae42722bc0419886584c67784fb61 /source3/libnet | |
parent | b2729f4e2dae9bf6dd74555ac1b3b0c2f420c5bf (diff) | |
download | samba-5a4182012de914116798455793fd1963c2e65d28.tar.gz samba-5a4182012de914116798455793fd1963c2e65d28.tar.bz2 samba-5a4182012de914116798455793fd1963c2e65d28.zip |
Use TALLOC_FREE in libnetjoin debugging dump code.
Guenther
(This used to be commit b753087ff79c1d35a409eddc1f61e115e887c1e1)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_join.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_join.c b/source3/libnet/libnet_join.c index 866d1c06e1..4f9e4c1c86 100644 --- a/source3/libnet/libnet_join.c +++ b/source3/libnet/libnet_join.c @@ -29,7 +29,7 @@ char *str = NULL; \ str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_JoinCtx, f, r); \ DEBUG(1,("libnet_Join:\n%s", str)); \ - talloc_free(str); \ + TALLOC_FREE(str); \ } while (0) #define LIBNET_JOIN_IN_DUMP_CTX(ctx, r) \ @@ -42,7 +42,7 @@ char *str = NULL; \ str = NDR_PRINT_FUNCTION_STRING(ctx, libnet_UnjoinCtx, f, r); \ DEBUG(1,("libnet_Unjoin:\n%s", str)); \ - talloc_free(str); \ + TALLOC_FREE(str); \ } while (0) #define LIBNET_UNJOIN_IN_DUMP_CTX(ctx, r) \ |