From 796d484b44fe3e18af5c9c47d7bb42e096655e9b Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 10 Oct 2000 01:26:55 +0000 Subject: [PATCH] Clearer "nothing to do" message. --- main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 5ac407a4..648c2371 100644 --- a/main.c +++ b/main.c @@ -510,7 +510,9 @@ int client_run(int f_in, int f_out, int pid, int argc, char *argv[]) flist = recv_file_list(f_in); if (!flist || flist->count == 0) { - rprintf(FINFO,"client: nothing to do\n"); + rprintf(FINFO, "client: nothing to do: " + "perhaps you need to specify some filenames or " + "the --recursive option?\n"); exit_cleanup(0); } -- 2.34.1