Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
scorpio
external_rsync
Commits
55dbbdea
Commit
55dbbdea
authored
15 years ago
by
Wayne Davison
Browse files
Options
Download
Email Patches
Plain Diff
Fixed inconsistencies reported by packaging/var-checker.
parent
cbd27d5e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
13 deletions
+9
-13
checksum.c
checksum.c
+0
-2
exclude.c
exclude.c
+1
-1
generator.c
generator.c
+1
-1
hlink.c
hlink.c
+1
-1
io.c
io.c
+2
-3
log.c
log.c
+2
-2
main.c
main.c
+1
-1
options.c
options.c
+0
-1
receiver.c
receiver.c
+1
-1
No files found.
checksum.c
View file @
55dbbdea
...
...
@@ -24,8 +24,6 @@
extern
int
checksum_seed
;
extern
int
protocol_version
;
int
csum_length
=
SHORT_SUM_LENGTH
;
/* initial value */
/*
a simple 32 bit checksum that can be upadted from either end
(inspired by Mark Adler's Adler-32 checksum)
...
...
This diff is collapsed.
Click to expand it.
exclude.c
View file @
55dbbdea
...
...
@@ -37,7 +37,7 @@ extern int sanitize_paths;
extern
int
protocol_version
;
extern
int
module_id
;
extern
char
curr_dir
[];
extern
char
curr_dir
[
MAXPATHLEN
];
extern
unsigned
int
curr_dir_len
;
extern
unsigned
int
module_dirlen
;
...
...
This diff is collapsed.
Click to expand it.
generator.c
View file @
55dbbdea
...
...
@@ -76,7 +76,7 @@ extern int fuzzy_basis;
extern
int
always_checksum
;
extern
int
checksum_len
;
extern
char
*
partial_dir
;
extern
char
*
basis_dir
[];
extern
char
*
basis_dir
[
MAX_BASIS_DIRS
+
1
];
extern
int
compare_dest
;
extern
int
copy_dest
;
extern
int
link_dest
;
...
...
This diff is collapsed.
Click to expand it.
hlink.c
View file @
55dbbdea
...
...
@@ -37,7 +37,7 @@ extern int remove_source_files;
extern
int
stdout_format_has_i
;
extern
int
maybe_ATTRS_REPORT
;
extern
int
unsort_ndx
;
extern
char
*
basis_dir
[];
extern
char
*
basis_dir
[
MAX_BASIS_DIRS
+
1
];
extern
struct
file_list
*
cur_flist
;
#ifdef SUPPORT_HARD_LINKS
...
...
This diff is collapsed.
Click to expand it.
io.c
View file @
55dbbdea
...
...
@@ -36,7 +36,6 @@
extern
int
bwlimit
;
extern
size_t
bwlimit_writemax
;
extern
int
io_timeout
;
extern
int
allowed_lull
;
extern
int
am_server
;
extern
int
am_daemon
;
extern
int
am_sender
;
...
...
@@ -47,7 +46,6 @@ extern int eol_nulls;
extern
int
flist_eof
;
extern
int
list_only
;
extern
int
read_batch
;
extern
int
csum_length
;
extern
int
compat_flags
;
extern
int
protect_args
;
extern
int
checksum_seed
;
...
...
@@ -61,7 +59,8 @@ extern int filesfrom_convert;
extern
iconv_t
ic_send
,
ic_recv
;
#endif
const
char
phase_unknown
[]
=
"unknown"
;
int
csum_length
=
SHORT_SUM_LENGTH
;
/* initial value */
int
allowed_lull
=
0
;
int
ignore_timeout
=
0
;
int
batch_fd
=
-
1
;
int
msgdone_cnt
=
0
;
...
...
This diff is collapsed.
Click to expand it.
log.c
View file @
55dbbdea
...
...
@@ -52,9 +52,9 @@ extern char *logfile_name;
extern
iconv_t
ic_chck
;
#endif
#ifdef ICONV_OPTION
extern
iconv_t
ic_send
,
ic_recv
;
extern
iconv_t
ic_recv
;
#endif
extern
char
curr_dir
[];
extern
char
curr_dir
[
MAXPATHLEN
];
extern
char
*
full_module_path
;
extern
unsigned
int
module_dirlen
;
...
...
This diff is collapsed.
Click to expand it.
main.c
View file @
55dbbdea
...
...
@@ -70,7 +70,7 @@ extern struct stats stats;
extern
char
*
filesfrom_host
;
extern
char
*
partial_dir
;
extern
char
*
dest_option
;
extern
char
*
basis_dir
[];
extern
char
*
basis_dir
[
MAX_BASIS_DIRS
+
1
];
extern
char
*
rsync_path
;
extern
char
*
shell_cmd
;
extern
char
*
batch_name
;
...
...
This diff is collapsed.
Click to expand it.
options.c
View file @
55dbbdea
...
...
@@ -85,7 +85,6 @@ int numeric_ids = 0;
int
allow_8bit_chars
=
0
;
int
force_delete
=
0
;
int
io_timeout
=
0
;
int
allowed_lull
=
0
;
int
prune_empty_dirs
=
0
;
int
use_qsort
=
0
;
char
*
files_from
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
receiver.c
View file @
55dbbdea
...
...
@@ -53,7 +53,7 @@ extern mode_t orig_umask;
extern
struct
stats
stats
;
extern
char
*
tmpdir
;
extern
char
*
partial_dir
;
extern
char
*
basis_dir
[];
extern
char
*
basis_dir
[
MAX_BASIS_DIRS
+
1
];
extern
struct
file_list
*
cur_flist
,
*
first_flist
,
*
dir_flist
;
extern
struct
filter_list_struct
daemon_filter_list
;
...
...
This diff is collapsed.
Click to expand it.
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