Replace VATTR_NULL() with memset(3) in fusefs_getattr(). VATTR_NULL()
authorhelg <helg@openbsd.org>
Wed, 18 Jul 2018 10:47:02 +0000 (10:47 +0000)
committerhelg <helg@openbsd.org>
Wed, 18 Jul 2018 10:47:02 +0000 (10:47 +0000)
commit9ff6e783b1303af5b0c829e0acac318f7dd18bf5
tree6dc5fce5568b6914d4b0580e995b6350786deb71
parent93fdf396f02d4cc0caa235ad89c0e65d184ee00b
Replace VATTR_NULL() with memset(3) in fusefs_getattr(). VATTR_NULL()
sets all members of struct vattr to VNOVAL (-1) instead of 0, which is
what is appropriate here. The VATTR_NULL() macro is intended for
initialising struct vattr when setting attributes.

ok mpi@
sys/miscfs/fuse/fuse_vnops.c