sbin/mount_hammer: Remove duplicated MOPT_UPDATE macro definition
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Sun, 17 Apr 2016 18:09:08 +0000 (03:09 +0900)
committerTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Sun, 17 Apr 2016 18:24:54 +0000 (03:24 +0900)
commitfe3b711b69bbb30cf43ffba984bdfd5df567beca
treee3818f215e66854d012ef73c72a20d5f5c9bd77b
parent58e3044b55cb8ae4c5cfdcdff71cb1eb3a1f4695
sbin/mount_hammer: Remove duplicated MOPT_UPDATE macro definition

include/mntopts.h has this for getmntopts(3).

mount_dirfs(8) has this too probably because it's been copy-pasted
from mount_hammer(8) though this commit doesn't touch that.
(the one in mount_devfs(8) is if0'd)

 # grep MOPT_UPDATE . -riI | grep define
 ./contrib/smbfs/mount_smbfs/mntopts.h:#define MOPT_UPDATE               { "update",     0, MNT_UPDATE, 0 }
 ./include/mntopts.h:#define MOPT_UPDATE         { "update",     0, MNT_UPDATE, 0 }
 ./sbin/mount_devfs/mount_devfs.c:#define MOPT_UPDATE         { "update",     0, MNT_UPDATE, 0 }
 ./sbin/mount_dirfs/mount_dirfs.c:#define MOPT_UPDATE         { "update",     0, MNT_UPDATE, 0 }
 ./sbin/mount_hammer/mount_hammer.c:#define MOPT_UPDATE         { "update",     0, MNT_UPDATE, 0 }
sbin/mount_hammer/mount_hammer.c