From 37f1a0933a4a6b1ff3462ea802c49b765f3f6126 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 13:07:12 +0100 Subject: [PATCH] s3: "regf_hbin_allocate" only looks at the size --- source3/registry/regfio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index d1333353fd5..5d9734b15e0 100644 --- a/source3/registry/regfio.c +++ b/source3/registry/regfio.c @@ -1429,7 +1429,7 @@ static REGF_HBIN* regf_hbin_allocate( REGF_FILE *file, uint32 block_size ) memcpy( hbin->header, "hbin", sizeof(HBIN_HDR_SIZE) ); - if (sys_fstat(file->fd, &sbuf, lp_fake_dir_create_times())) { + if (sys_fstat(file->fd, &sbuf, false)) { DEBUG(0,("regf_hbin_allocate: stat() failed! (%s)\n", strerror(errno))); return NULL; } -- 2.11.4.GIT