[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Mon Aug 8 09:08:02 UTC 2022


The branch, master has been updated
       via  82d931d23d1 s3: smbd: Oops. DBG_ERR messages I used to debug parse_dfs_path(), should have been DBG_DEBUG.
      from  fb937ddc838 lib/util/access: source3/auth/user_util: Check for INNETGR

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 82d931d23d14670c086082483943700d61d1b7a0
Author: Jeremy Allison <jra at samba.org>
Date:   Fri Aug 5 11:06:13 2022 -0700

    s3: smbd: Oops. DBG_ERR messages I used to debug parse_dfs_path(), should have been DBG_DEBUG.
    
    Signed-off-by: Jeremy Allison <jra at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Mon Aug  8 09:07:24 UTC 2022 on sn-devel-184

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/msdfs.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c
index 1f24c87ccbd..a52a2449965 100644
--- a/source3/smbd/msdfs.c
+++ b/source3/smbd/msdfs.c
@@ -121,7 +121,7 @@ static NTSTATUS parse_dfs_path(connection_struct *conn,
 	 */
 	trim_char(p, '/', '/');
 
-	DBG_ERR("p = |%s| after trimming /'s\n", p);
+	DBG_DEBUG("p = |%s| after trimming /'s\n", p);
 
 	/* Now tokenize. */
 	/* Parse out hostname. */
@@ -143,7 +143,7 @@ static NTSTATUS parse_dfs_path(connection_struct *conn,
 	*p = '\0';
 	pdp->hostname = pathname_local;
 
-	DBG_ERR("hostname: %s\n",pdp->hostname);
+	DBG_DEBUG("hostname: %s\n",pdp->hostname);
 
 	/* Parse out servicename. */
 	servicename = p+1;
@@ -183,7 +183,7 @@ static NTSTATUS parse_dfs_path(connection_struct *conn,
 
 	pdp->servicename = servicename;
 
-	DBG_ERR("servicename: %s\n", pdp->servicename);
+	DBG_DEBUG("servicename: %s\n", pdp->servicename);
 
 	if(p == NULL) {
 		/* Client sent self referral \server\share. */
@@ -202,7 +202,7 @@ static NTSTATUS parse_dfs_path(connection_struct *conn,
 	 */
 
 	pdp->reqpath = p;
-	DBG_ERR("rest of the path: %s\n", pdp->reqpath);
+	DBG_DEBUG("rest of the path: %s\n", pdp->reqpath);
 	return NT_STATUS_OK;
 }
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list