New stubs to get the test setup to compile with the exclude changes.

This commit is contained in:
Wayne Davison
2003-07-01 21:45:29 +00:00
parent 4762db4fc9
commit d542c20c5f

View File

@@ -27,6 +27,7 @@
**/
int modify_window = 0;
struct exclude_struct **server_exclude_list;
void rprintf(enum logcode UNUSED(code), const char *format, ...)
{
@@ -42,3 +43,10 @@ int modify_window = 0;
code, file, line);
exit(code);
}
int check_exclude(struct exclude_struct **list, char *name, int name_is_dir)
{
/* This function doesn't really get called in a test context, so
* just reference our parameters to avoid compiler warnings. */
return 0 && list && name && name_is_dir;
}