diff options
author | Paul Green <paulg@samba.org> | 2005-11-10 21:34:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:23 -0500 |
commit | 5a06869da700261b97c62b20802f17cf5277cba8 (patch) | |
tree | cee45dfe4dd4ee7ade2c74a7b604a0e79d4e8058 /source3 | |
parent | 9d9fe2d58de24ff7fd7f95bae878d299a1c6d33c (diff) | |
download | samba-5a06869da700261b97c62b20802f17cf5277cba8.tar.gz samba-5a06869da700261b97c62b20802f17cf5277cba8.tar.bz2 samba-5a06869da700261b97c62b20802f17cf5277cba8.zip |
r11657: Tiny improvement to debug error message in dir_check_ftype.
(This used to be commit 46674ca21d9c257bc48af97e313b49118c7b478d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c index c993012a25..0635db22db 100644 --- a/source3/smbd/dir.c +++ b/source3/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; } |