]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: smbd: Oops. DBG_ERR messages I used to debug parse_dfs_path(), should have been...
authorJeremy Allison <jra@samba.org>
Fri, 5 Aug 2022 18:06:13 +0000 (11:06 -0700)
committerVolker Lendecke <vl@samba.org>
Mon, 8 Aug 2022 09:07:24 +0000 (09:07 +0000)
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Mon Aug  8 09:07:24 UTC 2022 on sn-devel-184

source3/smbd/msdfs.c

index 1f24c87ccbdc0db89585c6542acdbaafae8e37ab..a52a2449965f28f6b198254495487719b55d8ef4 100644 (file)
@@ -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;
 }