Commit 76340ea4 authored by Wayne Davison's avatar Wayne Davison

Fix weird error in test programs on SunOS.

parent 7e1a9c4d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment