diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-24 01:46:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-24 01:46:47 +0000 |
commit | 908771bb0f0fdc7c3a523e3f28a741778c1ec227 (patch) | |
tree | aef9967aab80dcdfebff01c4d532fd71ae7df6f6 | |
parent | 9ad5a3fe36ac2b32bcb7a50c608ec586629f2125 (diff) | |
download | samba-908771bb0f0fdc7c3a523e3f28a741778c1ec227.tar.gz samba-908771bb0f0fdc7c3a523e3f28a741778c1ec227.tar.bz2 samba-908771bb0f0fdc7c3a523e3f28a741778c1ec227.zip |
added debug info
(This used to be commit 4a988021a2aceaa5fc0d4e5ba2802392a7141ad8)
-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 f2e672987e..73c4afd77e 100644 --- a/source3/smbd/dir.c +++ b/source3/smbd/dir.c @@ -652,7 +652,7 @@ void DirCacheAdd(char *path,char *name,char *dname,int snum) entry->next && count < dir_cache_size + 1; entry=entry->next, count++) ; if (entry->next || count != dir_cache_size + 1) { - DEBUG(0,("DirCache bug - please report\n")); + DEBUG(0,("DirCache bug - please report %d %d\n",dir_cache_size,count)); } free(entry->path); free(entry->name); |