mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
Simplify #if conditions
This commit is contained in:
parent
cff5af2e76
commit
acdf5363b2
@ -315,6 +315,20 @@ bool Utils::Fs::isNetworkFileSystem(const QString &path)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
return (::GetDriveTypeW(volumePath.get()) == DRIVE_REMOTE);
|
return (::GetDriveTypeW(volumePath.get()) == DRIVE_REMOTE);
|
||||||
|
#elif defined(Q_OS_MAC) || defined(Q_OS_OPENBSD)
|
||||||
|
QString file = path;
|
||||||
|
if (!file.endsWith('/'))
|
||||||
|
file += '/';
|
||||||
|
file += '.';
|
||||||
|
|
||||||
|
struct statfs buf {};
|
||||||
|
if (statfs(file.toLocal8Bit().constData(), &buf) != 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// XXX: should we make sure HAVE_STRUCT_FSSTAT_F_FSTYPENAME is defined?
|
||||||
|
return ((strncmp(buf.f_fstypename, "cifs", sizeof(buf.f_fstypename)) == 0)
|
||||||
|
|| (strncmp(buf.f_fstypename, "nfs", sizeof(buf.f_fstypename)) == 0)
|
||||||
|
|| (strncmp(buf.f_fstypename, "smbfs", sizeof(buf.f_fstypename)) == 0));
|
||||||
#else
|
#else
|
||||||
QString file = path;
|
QString file = path;
|
||||||
if (!file.endsWith('/'))
|
if (!file.endsWith('/'))
|
||||||
@ -324,12 +338,7 @@ bool Utils::Fs::isNetworkFileSystem(const QString &path)
|
|||||||
struct statfs buf {};
|
struct statfs buf {};
|
||||||
if (statfs(file.toLocal8Bit().constData(), &buf) != 0)
|
if (statfs(file.toLocal8Bit().constData(), &buf) != 0)
|
||||||
return false;
|
return false;
|
||||||
#if defined(Q_OS_MAC) || defined(Q_OS_OPENBSD)
|
|
||||||
// XXX: should we make sure HAVE_STRUCT_FSSTAT_F_FSTYPENAME is defined?
|
|
||||||
return ((strncmp(buf.f_fstypename, "cifs", sizeof(buf.f_fstypename)) == 0)
|
|
||||||
|| (strncmp(buf.f_fstypename, "nfs", sizeof(buf.f_fstypename)) == 0)
|
|
||||||
|| (strncmp(buf.f_fstypename, "smbfs", sizeof(buf.f_fstypename)) == 0));
|
|
||||||
#else
|
|
||||||
// Magic number references:
|
// Magic number references:
|
||||||
// 1. /usr/include/linux/magic.h
|
// 1. /usr/include/linux/magic.h
|
||||||
// 2. https://github.com/coreutils/coreutils/blob/master/src/stat.c
|
// 2. https://github.com/coreutils/coreutils/blob/master/src/stat.c
|
||||||
@ -343,6 +352,5 @@ bool Utils::Fs::isNetworkFileSystem(const QString &path)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user