From 31ec50d7da5836163fa8d8ea15038ca3f88caf3e Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 24 Jan 2002 04:41:09 +0000 Subject: [PATCH] rsync_module: If host-based access fails, show the exact name/address used for the check in the error message. (Just in case...) --- clientserver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.34.1