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
3de73827
Commit
3de73827
authored
Jan 20, 2006
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call make_file() with one more arg (the base flags).
parent
458aeea4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
backup.c
backup.c
+1
-1
generator.c
generator.c
+1
-1
No files found.
backup.c
View file @
3de73827
...
...
@@ -180,7 +180,7 @@ static int keep_backup(char *fname)
if
(
do_lstat
(
fname
,
&
st
)
<
0
)
return
1
;
if
(
!
(
file
=
make_file
(
fname
,
NULL
,
NULL
,
NO_FILTERS
)))
if
(
!
(
file
=
make_file
(
fname
,
NULL
,
NULL
,
0
,
NO_FILTERS
)))
return
1
;
/* the file could have disappeared */
if
(
!
(
buf
=
get_backup_name
(
fname
)))
...
...
generator.c
View file @
3de73827
...
...
@@ -1195,7 +1195,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
close
(
fd
);
return
;
}
if
(
!
(
back_file
=
make_file
(
fname
,
NULL
,
NULL
,
NO_FILTERS
)))
{
if
(
!
(
back_file
=
make_file
(
fname
,
NULL
,
NULL
,
0
,
NO_FILTERS
)))
{
close
(
fd
);
goto
pretend_missing
;
}
...
...
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