X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/24c906d3f7f4db31884d4262ddf9824d91ff4a76..ac1d2d338450eb005abf03002f5784097caf7e19:/t_stub.c diff --git a/t_stub.c b/t_stub.c index 88b697e1..008e6b83 100644 --- a/t_stub.c +++ b/t_stub.c @@ -27,7 +27,8 @@ **/ int modify_window = 0; -struct exclude_struct **server_exclude_list; +int module_id = -1; +struct exclude_list_struct server_exclude_list; void rprintf(UNUSED(enum logcode code), const char *format, ...) { @@ -44,10 +45,26 @@ struct exclude_struct **server_exclude_list; exit(code); } - int check_exclude(UNUSED(struct exclude_struct **list), UNUSED(char *name), + int check_exclude(UNUSED(struct exclude_list_struct *listp), UNUSED(char *name), UNUSED(int name_is_dir)) { /* This function doesn't really get called in this test context, so * just return 0. */ return 0; } + + char *lp_name(UNUSED(int mod)) +{ + return NULL; +} + + BOOL lp_use_chroot(UNUSED(int mod)) +{ + return 0; +} + + char *lp_path(UNUSED(int mod)) +{ + return NULL; +} +