From 17faa41c7d484a88ceead75174f7878c09dedce1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 26 Mar 1998 05:48:37 +0000 Subject: [PATCH] added some debugging code --- flist.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flist.c b/flist.c index 0a61d344..f6f2c99f 100644 --- a/flist.c +++ b/flist.c @@ -669,6 +669,9 @@ struct file_list *send_file_list(int f,int argc,char *argv[]) write_int(f, io_error); } + if (verbose > 2) + fprintf(FINFO,"send_file_list done\n"); + return flist; } @@ -741,6 +744,9 @@ struct file_list *recv_file_list(int f) io_error |= read_int(f); } + if (verbose > 2) + fprintf(FINFO,"recv_file_list done\n"); + return flist; oom: -- 2.34.1