In commit d7c145c0, the structure struct fuse_operations ext2fs_ops
has bit-field member flag_utime_omit_ok initialized. This field has
been removed since libfuse version 3.0 (see libfuse/libfuse@4496de19).
As a result, compiling fuse-ext2 with the newer libfuse fails.
This patch fixes this problem by selectively initialize the
flag_utime_omit_ok field with an #if guard.
In commit d7c145c0, the structure
struct fuse_operations ext2fs_ops
has bit-field memberflag_utime_omit_ok
initialized. This field has been removed sincelibfuse
version 3.0 (see libfuse/libfuse@4496de19). As a result, compilingfuse-ext2
with the newerlibfuse
fails.This patch fixes this problem by selectively initialize the
flag_utime_omit_ok
field with an#if
guard.