summaryrefslogtreecommitdiff
path: root/source4/client
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-05-28 10:39:54 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-05-28 10:39:54 +0200
commit76f804af10e490f4037f556d1ac600fd905e0236 (patch)
tree11f100768f8966e7fbc2dec23071fb0beb2f6fd1 /source4/client
parentce99f9e73438ac8a62347f628f7c5d25941023da (diff)
downloadsamba-76f804af10e490f4037f556d1ac600fd905e0236.tar.gz
samba-76f804af10e490f4037f556d1ac600fd905e0236.tar.bz2
samba-76f804af10e490f4037f556d1ac600fd905e0236.zip
s4:client/client.c - we don't need "&ctx" for talloc calls
Simply use "ctx".
Diffstat (limited to 'source4/client')
-rw-r--r--source4/client/client.c2
1 files changed, 1 insertions, 1 deletions
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);