> The mountpoint executable is now provided from the util-linux source > (see #753779), so I'm reassigning.
By the way, for what's it's worth, the copy of mountpoint.c from the sysvinit source now includes since version 2.91: > /* r = ( (st.st_dev != st2.st_dev) || > ( (st.st_dev == st2.st_dev) && (st.st_ino == st2.st_ino) ) ; > > (A || (!A && B)) is the same as (A || B) so simplifying this > below. > Thanks to David Binderman for pointing this out. -- Jesse > */ > r = ( (st.st_dev != st2.st_dev) || (st.st_ino == st2.st_ino) ); -- Pierre Ynard