use s_ischr.. not s_isblk

This commit is contained in:
2022-03-28 09:47:32 +02:00
parent 2453390cc3
commit 6470277e43
9 changed files with 10 additions and 10 deletions

View File

@ -486,8 +486,8 @@ int checkNormalFile(char *mess, enum PROGRAM_INDEX index, int forceDeleteNormalF
LOG(logERROR, (mess));
return FAIL;
}
// zero = normal file (not block special file)
if (S_ISBLK(buf.st_mode)) {
// zero = normal file (not char special drive file)
if (!S_ISCHR(buf.st_mode)) {
// kernel memory is not permanent
if (index != PROGRAM_FPGA) {
sprintf(mess,