aboutsummaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-07 22:05:31 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-07 22:05:31 +0000
commit6881a2a5e71d2cc2ecfa5c377993c17ea4bcb1d3 (patch)
tree2a4cb3c3621ae34641d4345a4c27944a59308f65 /config.c
parente61f71745fd8e4682e77917b4db4aeff62072e2c (diff)
remove extraneous message
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6993 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'config.c')
-rwxr-xr-xconfig.c5
1 files changed, 2 insertions, 3 deletions
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;