mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-09-12 21:28:25 -04:00
Fix weird error in test programs on SunOS.
This commit is contained in:
1 parent
7e1a9c4d79
commit
76340ea44c
1 file changed
+11
@@ -26,6 +26,7 @@ int preallocate_files = 0;
|
||||
int module_id = -1;
|
||||
int relative_paths = 0;
|
||||
int module_dirlen = 0;
|
||||
int preserve_acls = 0;
|
||||
int preserve_times = 0;
|
||||
int preserve_xattrs = 0;
|
||||
char number_separator = ',';
|
||||
@@ -71,6 +72,16 @@ filter_rule_list daemon_filter_list;
|
||||
return -1;
|
||||
}
|
||||
|
||||
void free_xattr(UNUSED(stat_x *sxp))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
void free_acl(UNUSED(stat_x *sxp))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
char *lp_name(UNUSED(int mod))
|
||||
{
|
||||
return NULL;
|
||||
|
||||
Reference in new issue
Block a user