1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

smbd: Modernize two DEBUG statements

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Volker Lendecke 2023-06-22 11:19:29 +02:00
parent f56ceab909
commit 16ae3c2e26

View File

@ -793,8 +793,11 @@ bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
}
if (!dir_check_ftype(mode, dirtype)) {
DEBUG(5,("[%s] attribs 0x%x didn't match 0x%x\n",
fname, (unsigned int)mode, (unsigned int)dirtype));
DBG_INFO("[%s] attribs 0x%" PRIx32 " didn't match "
"0x%" PRIx32 "\n",
fname,
mode,
dirtype);
TALLOC_FREE(smb_fname);
TALLOC_FREE(dname);
TALLOC_FREE(fname);
@ -814,10 +817,11 @@ bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
}
}
DEBUG(3,("smbd_dirptr_get_entry mask=[%s] found %s "
"fname=%s (%s)\n",
mask, smb_fname_str_dbg(smb_fname),
dname, fname));
DBG_NOTICE("mask=[%s] found %s fname=%s (%s)\n",
mask,
smb_fname_str_dbg(smb_fname),
dname,
fname);
TALLOC_FREE(dname);