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
b5473dd4
Commit
b5473dd4
authored
Mar 07, 2009
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made --list-only output missing args as a "*missing" line.
parent
4e0fa131
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
generator.c
generator.c
+5
-1
No files found.
generator.c
View file @
b5473dd4
...
@@ -1031,7 +1031,11 @@ static void list_file_entry(struct file_struct *f)
...
@@ -1031,7 +1031,11 @@ static void list_file_entry(struct file_struct *f)
F_SYMLINK
(
f
));
F_SYMLINK
(
f
));
}
else
}
else
#endif
#endif
{
if
(
delete_missing_args
&&
!
f
->
mode
)
{
rprintf
(
FINFO
,
"%-*s %s
\n
"
,
colwidth
+
31
,
"*missing"
,
f_name
(
f
,
NULL
));
}
else
{
rprintf
(
FINFO
,
"%s %*s %s %s
\n
"
,
rprintf
(
FINFO
,
"%s %*s %s %s
\n
"
,
permbuf
,
colwidth
,
comma_num
(
len
),
permbuf
,
colwidth
,
comma_num
(
len
),
timestring
(
f
->
modtime
),
f_name
(
f
,
NULL
));
timestring
(
f
->
modtime
),
f_name
(
f
,
NULL
));
...
...
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