From 50d069637d9a95c5728069600f9cd9e945725a42 Mon Sep 17 00:00:00 2001 From: Aurélien Aptel Date: Tue, 9 Jul 2013 15:24:40 +0200 Subject: client.c, clitar.c: rename process_tar to tar_process, prepare code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Aptel Reviewed-by: David Disseldorp Reviewed-by: Andreas Schneider --- source3/client/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index b74ec73370..fa3f95f090 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -5318,6 +5318,7 @@ static int do_host_query(const char *query_host) static int do_tar_op(const char *base_directory) { + extern struct tar tar_ctx; int ret; /* do we already have a connection? */ @@ -5344,7 +5345,7 @@ static int do_tar_op(const char *base_directory) } } - ret=process_tar(); + ret = tar_process(&tar_ctx); cli_shutdown(cli); -- cgit