remove extraneous message

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6993 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Kevin P. Fleming 20 years ago
parent f09c6bc78e
commit 87c87fe158

@ -1,5 +1,7 @@
2005-11-07 Kevin P. Fleming <kpfleming@digium.com>
* config.c (config_text_file_load): don't generate log message when stat() fails
* many files: clean up application documentation to not refer to return values, since they cannot be used in the dialplan (work done by Neil Lewis)
2005-11-06 Russell Bryant <russell@digium.com>

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

Loading…
Cancel
Save