We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a023d commit c18b137Copy full SHA for c18b137
packages/seacas/libraries/ioss/src/Ioss_FileInfo.C
@@ -195,12 +195,12 @@ namespace Ioss {
195
return stat_fs.f_fstypename;
196
#else
197
/* linux statfs defines that 0x6969 is NFS filesystem */
198
- if (fs_stats.f_type == 0x0BD00BD0)
199
- return "lustre";
200
- if (fs_stats.f_type == 0x47504653)
201
- return "gpfs";
202
- if (fs_stats.f_type == 0x6969)
203
- return "nfs";
+ if (stat_fs.f_type == 0x0BD00BD0)
+ return "lustre";
+ if (stat_fs.f_type == 0x47504653)
+ return "gpfs";
+ if (stat_fs.f_type == 0x6969)
+ return "nfs";
204
#endif
205
}
206
0 commit comments