res_crypto: don't complain about directories

ASTERISK-30226 #close

Change-Id: I5695fb0c9521f112f754b8362cff2a8f3eff05c5
18.16
Philip Prindeville 3 years ago
parent a7f29e8d1a
commit 4fd75c718d

@ -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;

Loading…
Cancel
Save