We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17556c7 commit e68a947Copy full SHA for e68a947
src/detection/disk/disk_sunos.c
@@ -99,9 +99,6 @@ static void detectStats(FFDisk* disk)
99
ffStrbufSetS(&disk->name, fs.f_fstr);
100
101
disk->createTime = 0;
102
- struct stat deviceStat;
103
- if(stat(disk->mountpoint.chars, &deviceStat) == 0)
104
- disk->createTime = (uint64_t) deviceStat.st_ctim.tv_sec * 1000 + (uint64_t) deviceStat.st_ctim.tv_nsec / 1000000000;
105
}
106
107
const char* ffDetectDisksImpl(FFDiskOptions* options, FFlist* disks)
0 commit comments