summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-04-22 08:41:03 +0000
committerWayne Davison <wayned@samba.org>2004-04-22 08:41:03 +0000
commit24e1569f8b6cbd072e986502111bac2773e920e8 (patch)
tree80d7325ccc4df6c23f4843382ceb423965df2856
parentde31639fffcb303ae41aa727e0633d488863d1de (diff)
downloadrsync-24e1569f8b6cbd072e986502111bac2773e920e8.tar.gz
The debug output for add_exclude() now needs to limit the pattern to
print only "pat_len" chars.
-rw-r--r--exclude.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/exclude.c b/exclude.c
index d0653bec..fbefcd4d 100644
--- a/exclude.c
+++ b/exclude.c
@@ -300,8 +300,8 @@ void add_exclude(struct exclude_list_struct *listp, const char *pattern,
make_exclude(listp, cp, pat_len, incl);
if (verbose > 2) {
- rprintf(FINFO, "[%s] add_exclude(%s,%s)\n",
- who_am_i(), cp,
+ rprintf(FINFO, "[%s] add_exclude(%.*s,%s)\n",
+ who_am_i(), pat_len, cp,
incl ? "include" : "exclude");
}
}