Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblongpath-rsync
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liblongpath
liblongpath-rsync
Commits
a9e47626
Commit
a9e47626
authored
Jan 20, 2006
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle the extra output needed when log_format_has_i > 1.
parent
487094a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
generator.c
generator.c
+1
-1
log.c
log.c
+1
-1
No files found.
generator.c
View file @
a9e47626
...
...
@@ -360,7 +360,7 @@ void itemize(struct file_struct *file, int ndx, int statret, STRUCT_STAT *st,
iflags
&=
0xffff
;
if
((
iflags
&
SIGNIFICANT_ITEM_FLAGS
||
verbose
>
1
||
(
xname
&&
*
xname
))
&&
!
read_batch
)
{
||
log_format_has_i
>
1
||
(
xname
&&
*
xname
))
&&
!
read_batch
)
{
if
(
protocol_version
>=
29
)
{
if
(
ndx
>=
0
)
write_int
(
sock_f_out
,
ndx
);
...
...
log.c
View file @
a9e47626
...
...
@@ -646,7 +646,7 @@ void maybe_log_item(struct file_struct *file, int iflags, int itemizing,
{
int
significant_flags
=
iflags
&
SIGNIFICANT_ITEM_FLAGS
;
int
see_item
=
itemizing
&&
(
significant_flags
||
*
buf
||
(
verbose
>
1
&&
log_format_has_i
));
||
log_format_has_i
>
1
||
(
verbose
>
1
&&
log_format_has_i
));
int
local_change
=
iflags
&
ITEM_LOCAL_CHANGE
&&
significant_flags
;
if
(
am_server
)
{
if
(
am_daemon
&&
!
dry_run
&&
see_item
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment