summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2003-07-21 20:20:09 +0000
committerRichard Sharpe <sharpe@samba.org>2003-07-21 20:20:09 +0000
commitf746a68030609aa6239a25664360913805abd78d (patch)
tree766eac34dcf708c51abaa26b99f2200a33d587d5 /source3/smbd
parentb3064ac5d64f54562e4f2d7d1b021374def1352d (diff)
downloadsamba-f746a68030609aa6239a25664360913805abd78d.tar.gz
samba-f746a68030609aa6239a25664360913805abd78d.tar.bz2
samba-f746a68030609aa6239a25664360913805abd78d.zip
Clarify a debug log a little. The path might not exist, so say so.
(This used to be commit 8409cf3e470df79f219f9a21c0cb780e9257186c)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 18e0887071..c2855487a5 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -661,7 +661,7 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser,
#else
/* the alternative is just to check the directory exists */
if (stat(conn->connectpath, &st) != 0 || !S_ISDIR(st.st_mode)) {
- DEBUG(0,("'%s' is not a directory, when connecting to [%s]\n", conn->connectpath, lp_servicename(SNUM(conn))));
+ DEBUG(0,("'%s' does not exist or is not a directory, when connecting to [%s]\n", conn->connectpath, lp_servicename(SNUM(conn))));
change_to_root_user();
yield_connection(conn, lp_servicename(SNUM(conn)));
conn_free(conn);