From 1ef5bf3cfdcbad427ff201d476cd49c472ce58b7 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 11 Oct 2006 00:04:44 +0000 Subject: [PATCH] If new_root_dir is set, itemize the output of the "." dir as a directory-creation event. --- generator.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/generator.c b/generator.c index 15cd325e..1122c4f2 100644 --- a/generator.c +++ b/generator.c @@ -78,6 +78,7 @@ extern int copy_dest; extern int link_dest; extern int whole_file; extern int list_only; +extern int new_root_dir; extern int read_batch; extern int safe_symlinks; extern long block_size; /* "long" because popt can't set an int32. */ @@ -913,8 +914,14 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx, dry_run++; } if (itemizing && f_out != -1) { - itemize(file, ndx, statret, &st, - statret ? ITEM_LOCAL_CHANGE : 0, 0, NULL); + int sr = statret; + if (new_root_dir) { + if (*fname == '.' && fname[1] == '\0') + sr = -1; + new_root_dir = 0; + } + itemize(file, ndx, sr, &st, + sr ? ITEM_LOCAL_CHANGE : 0, 0, NULL); } if (statret != 0 && do_mkdir(fname,file->mode) < 0 && errno != EEXIST) { if (!relative_paths || errno != ENOENT -- 2.34.1