From: Günther Deschner Date: Tue, 21 Sep 2004 13:04:35 +0000 (+0000) Subject: r2475: A more helpful debug-message when a connection to a dfs-proxy-share is X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5778 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=486bcff17faf8c7ecd9bf4bb9af244bc4bcdf843;p=thirdparty%2Fsamba.git r2475: A more helpful debug-message when a connection to a dfs-proxy-share is failing. Guenther --- diff --git a/source/smbd/service.c b/source/smbd/service.c index 5ebd772aa1d..4d111e0ea35 100644 --- a/source/smbd/service.c +++ b/source/smbd/service.c @@ -804,7 +804,8 @@ connection_struct *make_connection(const char *service_in, DATA_BLOB password, /* Handle non-Dfs clients attempting connections to msdfs proxy */ if (lp_host_msdfs() && (*lp_msdfs_proxy(snum) != '\0')) { - DEBUG(3, ("refusing connection to dfs proxy '%s'\n", service)); + DEBUG(3, ("refusing connection to dfs proxy share '%s' (pointing to %s)\n", + service, lp_msdfs_proxy(snum))); *status = NT_STATUS_BAD_NETWORK_NAME; return NULL; }