From: Martin Pool Date: Thu, 24 Jan 2002 04:41:09 +0000 (+0000) Subject: rsync_module: If host-based access fails, show the exact name/address X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/31ec50d7da5836163fa8d8ea15038ca3f88caf3e rsync_module: If host-based access fails, show the exact name/address used for the check in the error message. (Just in case...) --- diff --git a/clientserver.c b/clientserver.c index 73893764..4c44d26e 100644 --- a/clientserver.c +++ b/clientserver.c @@ -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; }