X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/2fe1feea751bdb73797169402cd79fb25ace420c..beef86d0dda124ca59005846049cf7d60efb69c7:/util.c diff --git a/util.c b/util.c index 5dd6ead4..03f4054a 100644 --- a/util.c +++ b/util.c @@ -895,8 +895,8 @@ int push_dir(const char *dir, int set_path_only) curr_dir_depth = count_dir_elements(curr_dir + module_dirlen); } - if (verbose >= 5) - rprintf(FINFO, "[%s] dir is now %s\n", who_am_i(), curr_dir); + if (verbose >= 5 && !set_path_only) + rprintf(FINFO, "[%s] push_dir(%s)\n", who_am_i(), curr_dir); return 1; } @@ -916,6 +916,9 @@ int pop_dir(const char *dir) if (sanitize_paths) curr_dir_depth = count_dir_elements(curr_dir + module_dirlen); + if (verbose >= 5) + rprintf(FINFO, "[%s] pop_dir(%s)\n", who_am_i(), curr_dir); + return 1; }