diff options
author | Jeremy Allison <jra@samba.org> | 1998-08-27 20:38:53 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-08-27 20:38:53 +0000 |
commit | 5e5e320d361afcb4d9503354b3912b4c7a672197 (patch) | |
tree | 77b9557fe080a5e15d077d8e9fec3bae993356f7 /source3/smbd/nttrans.c | |
parent | 74a2764726ce1047c79c7eaa84628901462a9b10 (diff) | |
download | samba-5e5e320d361afcb4d9503354b3912b4c7a672197.tar.gz samba-5e5e320d361afcb4d9503354b3912b4c7a672197.tar.xz samba-5e5e320d361afcb4d9503354b3912b4c7a672197.zip |
This is the stat cache code - seems to work fine (needs heavy
NetBench testing though.... :-). Attempts to efficiently reduce
the number of stat() calls Samba does.
Jeremy.
(This used to be commit d0e48a2d8072c3e77a57ac6a2fb5044c05f03b41)
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r-- | source3/smbd/nttrans.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 596d15c2c77..fbcc19e77d8 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -490,7 +490,7 @@ int reply_ntcreate_and_X(connection_struct *conn, set_posix_case_semantics(file_attributes); - unix_convert(fname,conn,0,&bad_path); + unix_convert(fname,conn,0,&bad_path,NULL); fsp = file_new(); if (!fsp) { @@ -743,7 +743,7 @@ static int call_nt_transact_create(connection_struct *conn, set_posix_case_semantics(file_attributes); - unix_convert(fname,conn,0,&bad_path); + unix_convert(fname,conn,0,&bad_path,NULL); fsp = file_new(); if (!fsp) { |