From 76f804af10e490f4037f556d1ac600fd905e0236 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 28 May 2010 10:39:54 +0200 Subject: s4:client/client.c - we don't need "&ctx" for talloc calls Simply use "ctx". --- source4/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/client') diff --git a/source4/client/client.c b/source4/client/client.c index 2a2c8ac5a3..ee499d24bb 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -872,7 +872,7 @@ static void do_mget(struct smbclient_context *ctx, struct clilist_file_info *fin talloc_free(quest); if (!(finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)) { - rname = talloc_asprintf(&ctx, "%s%s",ctx->remote_cur_dir, + rname = talloc_asprintf(ctx, "%s%s",ctx->remote_cur_dir, finfo->name); do_get(ctx, rname, finfo->name, false); talloc_free(rname); -- cgit