summaryrefslogtreecommitdiff
path: root/source3/smbd/dir.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/dir.c')
-rw-r--r--source3/smbd/dir.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index aeada5968f..4f59205feb 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -656,7 +656,8 @@ BOOL dptr_fill(char *buf1,unsigned int key)
DEBUG(6,("fill on key %u dirptr 0x%lx now at %d\n",key,
(long)dptr->dir_hnd,(int)offset));
if (offset != (uint32)-1 && (offset & DPTR_MASK)) {
- DEBUG(0,("dptr_fill: Error - offset has bit 32 set. Can't use in server state.\n"));
+ DEBUG(0,("dptr_fill: Error - offset 0x%x has bit 32 set. Can't use in server state.\n",
+ (unsigned int)offset ));
return False;
}
buf[0] = key;