diff options
author | Günther Deschner <gd@samba.org> | 2004-09-21 13:04:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:44 -0500 |
commit | 3de9b11601fb85209fd3a799da2f3a4a6cd41624 (patch) | |
tree | db008419477c6cb654aecd39fe5ba9a3a5f3b28b | |
parent | a71c7b4e173a9f99d470c4be2c6ecc2989d34486 (diff) | |
download | samba-3de9b11601fb85209fd3a799da2f3a4a6cd41624.tar.gz samba-3de9b11601fb85209fd3a799da2f3a4a6cd41624.tar.bz2 samba-3de9b11601fb85209fd3a799da2f3a4a6cd41624.zip |
r2475: A more helpful debug-message when a connection to a dfs-proxy-share is
failing.
Guenther
(This used to be commit 486bcff17faf8c7ecd9bf4bb9af244bc4bcdf843)
-rw-r--r-- | source3/smbd/service.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 5ebd772aa1..4d111e0ea3 100644 --- a/source3/smbd/service.c +++ b/source3/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; } |