mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
ntfs-3g - plisk
This commit is contained in:
parent
3c3703bdf1
commit
6aabd140f5
1 changed files with 7 additions and 2 deletions
|
@ -1019,7 +1019,11 @@ namespace libtorrent
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
if (!strcmp(fsinfo.f_fstypename, "hfs")
|
||||||
|
|| !strcmp(fsinfo.f_fstypename, "ufs"))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
|
@ -1033,11 +1037,12 @@ namespace libtorrent
|
||||||
switch (buf.f_type)
|
switch (buf.f_type)
|
||||||
{
|
{
|
||||||
case 0x5346544e: // NTFS
|
case 0x5346544e: // NTFS
|
||||||
|
case 0x65735546: // NTFS-3G
|
||||||
case 0xEF51: // EXT2 OLD
|
case 0xEF51: // EXT2 OLD
|
||||||
case 0xEF53: // EXT2 and EXT3
|
case 0xEF53: // EXT2 and EXT3
|
||||||
case 0x00011954: // UFS
|
case 0x00011954: // UFS
|
||||||
case 0x52654973: // ReiserFS
|
case 0x52654973: // ReiserFS
|
||||||
case 0x52345362: // Reiser4
|
case 0x52345362: // Reiser4
|
||||||
case 0x58465342: // XFS
|
case 0x58465342: // XFS
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue