diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/registry/regfio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/regfio.c b/source3/registry/regfio.c index d1333353fd..5d9734b15e 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; } |