summaryrefslogtreecommitdiff
path: root/flist.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-11-02 00:52:01 +0000
committerAndrew Tridgell <tridge@samba.org>1998-11-02 00:52:01 +0000
commitf7632fc60d69c8dabed600ede87f0b91319a3b7f (patch)
tree7032d0d169367b8b3c15ee1b3dccb78eb684717a /flist.c
parent2f098547ea2415971ac7b38d90246f53116d041f (diff)
downloadrsync-f7632fc60d69c8dabed600ede87f0b91319a3b7f.tar.gz
if no local destination is provided for the transfer then provide
a "ls -l" style listing of the files that would be transferred
Diffstat (limited to 'flist.c')
-rw-r--r--flist.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/flist.c b/flist.c
index f5c69b9a..664f26e4 100644
--- a/flist.c
+++ b/flist.c
@@ -51,6 +51,36 @@ static struct exclude_struct **local_exclude_list;
static void clean_flist(struct file_list *flist, int strip_root);
+
+static void list_file_entry(struct file_struct *f)
+{
+ char perms[11] = "----------";
+ char *perm_map = "rwxrwxrwx";
+ int i;
+
+ for (i=0;i<9;i++) {
+ if (f->mode & (1<<i)) perms[9-i] = perm_map[8-i];
+ }
+ if (S_ISLNK(f->mode)) perms[0] = 'l';
+ if (S_ISDIR(f->mode)) perms[0] = 'd';
+ if (S_ISBLK(f->mode)) perms[0] = 'b';
+ if (S_ISCHR(f->mode)) perms[0] = 'c';
+ if (S_ISSOCK(f->mode)) perms[0] = 's';
+ if (S_ISFIFO(f->mode)) perms[0] = 'p';
+
+ if (preserve_links && S_ISLNK(f->mode)) {
+ rprintf(FINFO,"%s %11.0f %s %s -> %s\n",
+ perms,
+ (double)f->length, timestring(f->modtime),
+ f_name(f), f->link);
+ } else {
+ rprintf(FINFO,"%s %11.0f %s %s\n",
+ perms,
+ (double)f->length, timestring(f->modtime), f_name(f));
+ }
+}
+
+
int link_stat(const char *Path, STRUCT_STAT *Buffer)
{
#if SUPPORT_LINKS
@@ -699,6 +729,7 @@ struct file_list *recv_file_list(int f)
struct file_list *flist;
unsigned char flags;
int64 start_read;
+ extern int list_only;
if (verbose && recurse && !am_server) {
rprintf(FINFO,"receiving file list ... ");
@@ -765,6 +796,14 @@ struct file_list *recv_file_list(int f)
io_error |= read_int(f);
}
+ if (list_only) {
+ int i;
+ for (i=0;i<flist->count;i++) {
+ list_file_entry(flist->files[i]);
+ }
+ }
+
+
if (verbose > 2)
rprintf(FINFO,"recv_file_list done\n");