diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-27 12:47:57 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-29 11:22:02 +0100 |
commit | e1f53e5d49c0a1a0a07afc91843aca955ca3f653 (patch) | |
tree | 50e44efafe6a787b4129cf399077901012b8b077 /source3/client | |
parent | 932ab0c299c89ae63a35f8b0a59e0c03b9c5ec3f (diff) | |
download | samba-e1f53e5d49c0a1a0a07afc91843aca955ca3f653.tar.gz samba-e1f53e5d49c0a1a0a07afc91843aca955ca3f653.tar.bz2 samba-e1f53e5d49c0a1a0a07afc91843aca955ca3f653.zip |
s3: "dotareof" only looks at the file type
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/clitar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c index cf5eb6782a..cdcdfb19ff 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -404,7 +404,7 @@ static void dotareof(int f) (void) dozerobuf(f, TBLOCK); (void) dozerobuf(f, TBLOCK); - if (sys_fstat(f, &stbuf, lp_fake_dir_create_times()) == -1) { + if (sys_fstat(f, &stbuf, false) == -1) { DEBUG(0, ("Couldn't stat file handle\n")); return; } |