From 6881a2a5e71d2cc2ecfa5c377993c17ea4bcb1d3 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Mon, 7 Nov 2005 22:05:31 +0000 Subject: remove extraneous message git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6993 f38db490-d61c-443f-a65b-d21fe96a405b --- config.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'config.c') diff --git a/config.c b/config.c index beb2f4df3..16c154742 100755 --- a/config.c +++ b/config.c @@ -572,10 +572,9 @@ static struct ast_config *config_text_file_load(const char *database, const char ast_copy_string(fn, globbuf.gl_pathv[i], sizeof(fn)); #endif do { - if (stat(fn, &statbuf)) { - ast_log(LOG_WARNING, "Cannot stat() '%s', ignoring\n", fn); + if (stat(fn, &statbuf)) continue; - } + if (!S_ISREG(statbuf.st_mode)) { ast_log(LOG_WARNING, "'%s' is not a regular file, ignoring\n", fn); continue; -- cgit v1.2.3