mount: do not guess mount as NFS if "hostname:" contains slashes
function old new delta singlemount 1273 1295 +22 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
758c2bd58e
commit
b1eedfcfa1
@ -2064,14 +2064,18 @@ static int singlemount(struct mntent *mp, int ignore_busy)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Might this be an NFS filesystem?
|
// Might this be an NFS filesystem?
|
||||||
if ((!mp->mnt_type || is_prefixed_with(mp->mnt_type, "nfs"))
|
if (!(vfsflags & (MS_BIND | MS_MOVE))
|
||||||
&& strchr(mp->mnt_fsname, ':') != NULL
|
&& (!mp->mnt_type || is_prefixed_with(mp->mnt_type, "nfs"))
|
||||||
&& !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))
|
|
||||||
) {
|
) {
|
||||||
if (!mp->mnt_type)
|
char *colon = strchr(mp->mnt_fsname, ':');
|
||||||
mp->mnt_type = (char*)"nfs";
|
if (colon /* looks like "hostname:..." */
|
||||||
rc = nfsmount(mp, vfsflags, filteropts);
|
&& strchrnul(mp->mnt_fsname, '/') > colon /* "hostname:" has no slashes */
|
||||||
goto report_error;
|
) {
|
||||||
|
if (!mp->mnt_type)
|
||||||
|
mp->mnt_type = (char*)"nfs";
|
||||||
|
rc = nfsmount(mp, vfsflags, filteropts);
|
||||||
|
goto report_error;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Look at the file. (Not found isn't a failure for remount, or for
|
// Look at the file. (Not found isn't a failure for remount, or for
|
||||||
|
Loading…
Reference in New Issue
Block a user