diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-21 07:43:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:14 -0500 |
commit | b7e1ea20dc873a753ff64653987130f03897a4e9 (patch) | |
tree | 67f37a1a19113c622dedf942f39b27ca994c1b05 /source4/torture | |
parent | b45f4ebbb880e41abf86abb54264123f3edbde05 (diff) | |
download | samba-b7e1ea20dc873a753ff64653987130f03897a4e9.tar.gz samba-b7e1ea20dc873a753ff64653987130f03897a4e9.tar.bz2 samba-b7e1ea20dc873a753ff64653987130f03897a4e9.zip |
r1985: take advantage of the new talloc in a few more places
(This used to be commit 6ffdfd779936ce8c5ca49c5f444e8da2bbeee0a8)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/basic/aliases.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/torture/basic/aliases.c b/source4/torture/basic/aliases.c index 5da8d2643b..1cc5b3f39b 100644 --- a/source4/torture/basic/aliases.c +++ b/source4/torture/basic/aliases.c @@ -119,7 +119,7 @@ static void qfileinfo_aliases(struct smbcli_state *cli) t2.in.data = data_blob(NULL, 0); smbcli_unlink(cli->tree, fname); - fnum = create_complex_file(cli, cli->mem_ctx, fname); + fnum = create_complex_file(cli, cli, fname); if (fnum == -1) { printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree)); } @@ -159,7 +159,7 @@ static void qpathinfo_aliases(struct smbcli_state *cli) t2.in.data = data_blob(NULL, 0); smbcli_unlink(cli->tree, fname); - fnum = create_complex_file(cli, cli->mem_ctx, fname); + fnum = create_complex_file(cli, cli, fname); if (fnum == -1) { printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree)); } @@ -203,7 +203,7 @@ static void findfirst_aliases(struct smbcli_state *cli) t2.in.data = data_blob(NULL, 0); smbcli_unlink(cli->tree, fname); - fnum = create_complex_file(cli, cli->mem_ctx, fname); + fnum = create_complex_file(cli, cli, fname); if (fnum == -1) { printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree)); } @@ -315,7 +315,7 @@ static void setfileinfo_aliases(struct smbcli_state *cli) t2.in.data = data_blob(NULL, 0); smbcli_unlink(cli->tree, fname); - fnum = create_complex_file(cli, cli->mem_ctx, fname); + fnum = create_complex_file(cli, cli, fname); if (fnum == -1) { printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree)); } @@ -356,7 +356,7 @@ static void setpathinfo_aliases(struct smbcli_state *cli) smbcli_unlink(cli->tree, fname); - fnum = create_complex_file(cli, cli->mem_ctx, fname); + fnum = create_complex_file(cli, cli, fname); if (fnum == -1) { printf("ERROR: open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree)); } |