When displaying unionfs mounts in fstab format (mount -p), mount(8)
currently uses strlcpy to remove the disposition prefix from the mount
name returned by getmntinfo(3). But strlcpy, like strcpy before it,
does not guaranteee correct behavior if the source and destination
buffers overlap.
Use memmove for this case instead.
PR: 283420
MFC after: 1 week