Tweaked some whitespace to match the latest version from autoconf.
[rsync/rsync.git] / t_stub.c
index 8f6d784..c2e972d 100644 (file)
--- a/t_stub.c
+++ b/t_stub.c
 
 int modify_window = 0;
 int module_id = -1;
-struct exclude_struct **server_exclude_list;
+int relative_paths = 0;
+int human_readable = 0;
+mode_t orig_umask = 002;
+char *partial_dir;
+struct filter_list_struct server_filter_list;
 
  void rprintf(UNUSED(enum logcode code), const char *format, ...)
 {
@@ -38,6 +42,16 @@ struct exclude_struct **server_exclude_list;
        va_end(ap);
 }
 
+ void rsyserr(UNUSED(enum logcode code), int errcode, const char *format, ...)
+{
+       va_list ap;
+       fputs(RSYNC_NAME ": ", stderr);
+       va_start(ap, format);
+       vfprintf(stderr, format, ap);
+       va_end(ap);
+       fprintf(stderr, ": %s (%d)\n", strerror(errcode), errcode);
+}
+
  void _exit_cleanup(int code, const char *file, int line)
 {
        fprintf(stderr, "exit(%d): %s(%d)\n",
@@ -45,7 +59,7 @@ struct exclude_struct **server_exclude_list;
        exit(code);
 }
 
- int check_exclude(UNUSED(struct exclude_struct **list), UNUSED(char *name),
+ int check_filter(UNUSED(struct filter_list_struct *listp), UNUSED(char *name),
                   UNUSED(int name_is_dir))
 {
        /* This function doesn't really get called in this test context, so