From: Wayne Davison Date: Thu, 11 Sep 2003 04:48:13 +0000 (+0000) Subject: Include a few new stubs to handle the new full_fname() function. X-Git-Tag: v2.5.7~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b9114e8cd37a100087a939e9db2ccb125919ffe;p=thirdparty%2Frsync.git Include a few new stubs to handle the new full_fname() function. --- diff --git a/t_stub.c b/t_stub.c index 88b697e1..8f6d784c 100644 --- a/t_stub.c +++ b/t_stub.c @@ -27,6 +27,7 @@ **/ int modify_window = 0; +int module_id = -1; struct exclude_struct **server_exclude_list; void rprintf(UNUSED(enum logcode code), const char *format, ...) @@ -51,3 +52,19 @@ struct exclude_struct **server_exclude_list; * 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; +} +