X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/fc088e30c8bb1dc9295ebe310176d0f2e38a49d9..6767ca617b8cf87feda0298db410473923889abf:/log.c diff --git a/log.c b/log.c index 388bc462..1e18c9e1 100644 --- a/log.c +++ b/log.c @@ -55,7 +55,7 @@ extern iconv_t ic_chck; extern iconv_t ic_send, ic_recv; #endif extern char curr_dir[]; -extern char *module_dir; +extern char *full_module_path; extern unsigned int module_dirlen; static int log_initialised; @@ -85,7 +85,7 @@ struct { { RERR_SIGNAL , "received SIGINT, SIGTERM, or SIGHUP" }, { RERR_WAITCHILD , "waitpid() failed" }, { RERR_MALLOC , "error allocating core memory buffers" }, - { RERR_PARTIAL , "some files could not be transferred" }, + { RERR_PARTIAL , "some files/attrs were not transferred (see previous errors)" }, { RERR_VANISHED , "some files vanished before they could be transferred" }, { RERR_TIMEOUT , "timeout in data send/receive" }, { RERR_CONTIMEOUT , "timeout waiting for daemon connection" }, @@ -603,7 +603,7 @@ static void log_formatted(enum logcode code, const char *format, const char *op, n = timestring(time(NULL)); break; case 'P': - n = module_dir; + n = full_module_path; break; case 'u': n = auth_user;