Fix build break

This commit is contained in:
Arun Prakash Jana 2020-08-04 22:25:17 +05:30
parent 66bb5a67d6
commit 3a61b3fc7f
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 1 deletions

View File

@ -3400,7 +3400,8 @@ static char get_ind(mode_t mode, bool perms, uchar *pair)
*pair = C_CHR;
return '\0';
default:
*pair = C_UND;
if (!perms)
*pair = C_UND;
return '?';
}
}