summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/media_index.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/media_index.c b/main/media_index.c
index 278b37c26..a643c237f 100644
--- a/main/media_index.c
+++ b/main/media_index.c
@@ -551,9 +551,8 @@ static int media_index_update(struct ast_media_index *index,
ast_str_set(&statfile, 0, "%s/%s", ast_str_buffer(index_dir), dent->d_name);
if (stat(ast_str_buffer(statfile), &st) < 0) {
- ast_log(LOG_ERROR, "Failed to stat %s: %s\n", ast_str_buffer(statfile), strerror(errno));
- res = -1;
- break;
+ ast_log(LOG_WARNING, "Failed to stat %s: %s\n", ast_str_buffer(statfile), strerror(errno));
+ continue;
}
if (S_ISDIR(st.st_mode)) {