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
f5a49d0e
Commit
f5a49d0e
authored
Jan 17, 2006
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Got rid of a now-unused static variable.
parent
03e23e07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
flist.c
flist.c
+0
-3
No files found.
flist.c
View file @
f5a49d0e
...
...
@@ -74,7 +74,6 @@ dev_t filesystem_dev; /* used to implement -x */
static
char
empty_sum
[
MD4_SUM_LENGTH
];
static
int
flist_count_offset
;
static
unsigned
int
file_struct_len
;
static
struct
file_list
*
sorting_flist
;
static
void
clean_flist
(
struct
file_list
*
flist
,
int
strip_root
,
int
no_dups
);
static
void
output_flist
(
struct
file_list
*
flist
);
...
...
@@ -1476,10 +1475,8 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
return
;
}
sorting_flist
=
flist
;
qsort
(
flist
->
files
,
flist
->
count
,
sizeof
flist
->
files
[
0
],
(
int
(
*
)())
file_compare
);
sorting_flist
=
NULL
;
for
(
i
=
no_dups
?
0
:
flist
->
count
;
i
<
flist
->
count
;
i
++
)
{
if
(
flist
->
files
[
i
]
->
basename
)
{
...
...
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