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

@ -158,8 +158,8 @@ int openFileForFlash(char *mess, FILE **flashfd) {
LOG(logERROR, (mess));
return FAIL;
}
// zero = normal file (not block special file)
if (S_ISBLK(buf.st_mode)) {
// zero = normal file (not char drive special file)
if (!S_ISCHR(buf.st_mode)) {
// memory is not permanent
sprintf(mess,
"Could not %s. The flash drive found is a normal file. "