rsync_module: If host-based access fails, show the exact name/address
authorMartin Pool <mbp@samba.org>
Thu, 24 Jan 2002 04:41:09 +0000 (04:41 +0000)
committerMartin Pool <mbp@samba.org>
Thu, 24 Jan 2002 04:41:09 +0000 (04:41 +0000)
used for the check in the error message.  (Just in case...)

clientserver.c

index 73893764993c891e0adb2ee25449a6873108412a..4c44d26e8bc5f75756ba8cc36873a6044c91ec3c 100644 (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;
        }