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

View file

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