It won't. To fix this problem, you can remove the /etc/mtab file and replace it with a symbolic link to /proc/mounts. In order for this to work, you must modify your startup scripts to use the "-n" option with every mount and umount command. This tells mount and umount not to update the /etc/mtab file.
For example, if you find:
mount -av -t nonfs,noproc |
mount -av -n -t nonfs,noproc |