*/
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. */
*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;
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. */
*/
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;
}