rsync_module: If host-based access fails, show the exact name/address

used for the check in the error message.  (Just in case...)
This commit is contained in:
Martin Pool
2002-01-24 04:41:09 +00:00
parent 5ad0e46f08
commit 31ec50d7da

View File

@@ -168,9 +168,9 @@ static int rsync_module(int fd, int i)
if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
rprintf(FERROR,"rsync denied on module %s from %s (%s)\n",
name, client_name(fd), client_addr(fd));
name, host, addr);
io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
name, client_name(fd), client_addr(fd));
name, host, addr);
return -1;
}