1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r11657: Tiny improvement to debug error message in dir_check_ftype.

(This used to be commit 46674ca21d)
This commit is contained in:
Paul Green 2005-11-10 21:34:25 +00:00 committed by Gerald (Jerry) Carter
parent 9d9fe2d58d
commit 5a06869da7

View File

@ -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;
}