summaryrefslogtreecommitdiff
path: root/flist.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-01-05 23:30:44 +0000
committerAndrew Tridgell <tridge@samba.org>1998-01-05 23:30:44 +0000
commit95a38e8684439082bd86a988e593939e10172881 (patch)
tree502e846c018954e0512ecec8ccb4d77ef9602623 /flist.c
parentc778aaa048494cdd7ef027c85a0cf57373da2a4d (diff)
downloadrsync-95a38e8684439082bd86a988e593939e10172881.tar.gz
rsync-95a38e8684439082bd86a988e593939e10172881.tar.bz2
rsync-95a38e8684439082bd86a988e593939e10172881.zip
cosmetic changes only
- minor correction to --update docs - don't print "building file list" stuff when building a local file list for use in the --delete code. - remove some spaces at the end of lines in Makefile.in
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flist.c b/flist.c
index c59d9340..894cf16c 100644
--- a/flist.c
+++ b/flist.c
@@ -413,7 +413,7 @@ struct file_list *send_file_list(int f,int argc,char *argv[])
char dbuf[MAXPATHLEN];
struct file_list *flist;
- if (verbose && recurse && !am_server) {
+ if (verbose && recurse && !am_server && f != -1) {
fprintf(FINFO,"building file list ... ");
fflush(FINFO);
}
@@ -497,7 +497,7 @@ struct file_list *send_file_list(int f,int argc,char *argv[])
write_flush(f);
}
- if (verbose && recurse && !am_server)
+ if (verbose && recurse && !am_server && f != -1)
fprintf(FINFO,"done\n");
clean_flist(flist);