res_crypto: don't complain about directories

ASTERISK-30226 #close

Change-Id: I5695fb0c9521f112f754b8362cff2a8f3eff05c5
This commit is contained in:
Philip Prindeville 2022-09-13 13:41:45 -06:00 committed by Friendly Automation
parent 0f61cc69ad
commit fe66639492
1 changed files with 3 additions and 0 deletions

View File

@ -786,6 +786,9 @@ static void crypto_load(int ifd, int ofd)
if (!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")) {
continue;
}
if (ent->d_type == DT_DIR) {
continue;
}
if (ent->d_type != DT_REG) {
ast_log(LOG_WARNING, "Non-regular file '%s' in keys directory\n", ent->d_name);
continue;