summaryrefslogtreecommitdiff
path: root/source/smbd/dir.c
diff options
context:
space:
mode:
authorPaul Green <paulg@samba.org>2005-11-10 21:34:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:23 -0500
commit46674ca21d9c257bc48af97e313b49118c7b478d (patch)
tree4e7cfaa1c6e1fbcbc9e8836caac67108af7d4d5a /source/smbd/dir.c
parentb0a2d43b603c2e230da6ada73587696605102e8f (diff)
downloadsamba-46674ca21d9c257bc48af97e313b49118c7b478d.tar.gz
r11657: Tiny improvement to debug error message in dir_check_ftype.
Diffstat (limited to 'source/smbd/dir.c')
-rw-r--r--source/smbd/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/dir.c b/source/smbd/dir.c
index c993012a254..0635db22dbd 100644
--- a/source/smbd/dir.c
+++ b/source/smbd/dir.c
@@ -802,7 +802,7 @@ BOOL get_dir_entry(connection_struct *conn,char *mask,uint32 dirtype, pstring fn
*mode = dos_mode(conn,pathreal,&sbuf);
if (!dir_check_ftype(conn,*mode,dirtype)) {
- DEBUG(5,("[%s] attribs didn't match %x\n",filename,(unsigned int)dirtype));
+ DEBUG(5,("[%s] attribs 0x%x didn't match 0x%x\n",filename,(unsigned int)*mode,(unsigned int)dirtype));
continue;
}