[Asterisk-cvs] asterisk ChangeLog,1.40,1.41 config.c,1.82,1.83
kpfleming
kpfleming
Mon Nov 7 17:14:25 CST 2005
- Previous message: [Asterisk-cvs] asterisk/apps app_adsiprog.c, 1.20,
1.21 app_authenticate.c, 1.21, 1.22 app_chanisavail.c, 1.28,
1.29 app_controlplayback.c, 1.20, 1.21 app_curl.c, 1.16,
1.17 app_cut.c, 1.20, 1.21 app_datetime.c, 1.8, 1.9 app_db.c,
1.19, 1.20 app_dial.c, 1.182, 1.183 app_directory.c, 1.50,
1.51 app_disa.c, 1.43, 1.44 app_dumpchan.c, 1.15,
1.16 app_echo.c, 1.16, 1.17 app_enumlookup.c, 1.27,
1.28 app_flash.c, 1.10, 1.11 app_getcpeid.c, 1.12,
1.13 app_groupcount.c, 1.27, 1.28 app_ices.c, 1.13,
1.14 app_image.c, 1.14, 1.15 app_intercom.c, 1.27,
1.28 app_lookupblacklist.c, 1.15, 1.16 app_lookupcidname.c,
1.12, 1.13 app_macro.c, 1.33, 1.34 app_math.c, 1.18,
1.19 app_md5.c, 1.14, 1.15 app_meetme.c, 1.121,
1.122 app_mp3.c, 1.32, 1.33 app_nbscat.c, 1.16,
1.17 app_page.c, 1.11, 1.12 app_playback.c, 1.25,
1.26 app_privacy.c, 1.21, 1.22 app_queue.c, 1.176,
1.177 app_read.c, 1.28, 1.29 app_record.c, 1.44,
1.45 app_sayunixtime.c, 1.15, 1.16 app_senddtmf.c, 1.16,
1.17 app_sendtext.c, 1.14, 1.15 app_setcallerid.c, 1.15,
1.16 app_setcdruserfield.c, 1.13, 1.14 app_setcidname.c, 1.16,
1.17 app_setcidnum.c, 1.16, 1.17 app_setrdnis.c, 1.11,
1.12 app_settransfercapability.c, 1.11, 1.12 app_sms.c, 1.31,
1.32 app_softhangup.c, 1.14, 1.15 app_striplsd.c, 1.11,
1.12 app_system.c, 1.23, 1.24 app_talkdetect.c, 1.18,
1.19 app_verbose.c, 1.10, 1.11 app_voicemail.c, 1.262,
1.263 app_zapateller.c, 1.15, 1.16 app_zapras.c, 1.17, 1.18
- Next message: [Asterisk-cvs] asterisk ChangeLog,1.41,1.42 Makefile,1.219,1.220
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv13072
Modified Files:
ChangeLog config.c
Log Message:
remove extraneous message
Index: ChangeLog
===================================================================
RCS file: /usr/cvsroot/asterisk/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- ChangeLog 7 Nov 2005 22:01:21 -0000 1.40
+++ ChangeLog 7 Nov 2005 22:05:31 -0000 1.41
@@ -1,5 +1,7 @@
2005-11-07 Kevin P. Fleming <kpfleming at 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 at digium.com>
Index: config.c
===================================================================
RCS file: /usr/cvsroot/asterisk/config.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- config.c 1 Nov 2005 21:53:29 -0000 1.82
+++ config.c 7 Nov 2005 22:05:31 -0000 1.83
@@ -572,10 +572,9 @@
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;
- Previous message: [Asterisk-cvs] asterisk/apps app_adsiprog.c, 1.20,
1.21 app_authenticate.c, 1.21, 1.22 app_chanisavail.c, 1.28,
1.29 app_controlplayback.c, 1.20, 1.21 app_curl.c, 1.16,
1.17 app_cut.c, 1.20, 1.21 app_datetime.c, 1.8, 1.9 app_db.c,
1.19, 1.20 app_dial.c, 1.182, 1.183 app_directory.c, 1.50,
1.51 app_disa.c, 1.43, 1.44 app_dumpchan.c, 1.15,
1.16 app_echo.c, 1.16, 1.17 app_enumlookup.c, 1.27,
1.28 app_flash.c, 1.10, 1.11 app_getcpeid.c, 1.12,
1.13 app_groupcount.c, 1.27, 1.28 app_ices.c, 1.13,
1.14 app_image.c, 1.14, 1.15 app_intercom.c, 1.27,
1.28 app_lookupblacklist.c, 1.15, 1.16 app_lookupcidname.c,
1.12, 1.13 app_macro.c, 1.33, 1.34 app_math.c, 1.18,
1.19 app_md5.c, 1.14, 1.15 app_meetme.c, 1.121,
1.122 app_mp3.c, 1.32, 1.33 app_nbscat.c, 1.16,
1.17 app_page.c, 1.11, 1.12 app_playback.c, 1.25,
1.26 app_privacy.c, 1.21, 1.22 app_queue.c, 1.176,
1.177 app_read.c, 1.28, 1.29 app_record.c, 1.44,
1.45 app_sayunixtime.c, 1.15, 1.16 app_senddtmf.c, 1.16,
1.17 app_sendtext.c, 1.14, 1.15 app_setcallerid.c, 1.15,
1.16 app_setcdruserfield.c, 1.13, 1.14 app_setcidname.c, 1.16,
1.17 app_setcidnum.c, 1.16, 1.17 app_setrdnis.c, 1.11,
1.12 app_settransfercapability.c, 1.11, 1.12 app_sms.c, 1.31,
1.32 app_softhangup.c, 1.14, 1.15 app_striplsd.c, 1.11,
1.12 app_system.c, 1.23, 1.24 app_talkdetect.c, 1.18,
1.19 app_verbose.c, 1.10, 1.11 app_voicemail.c, 1.262,
1.263 app_zapateller.c, 1.15, 1.16 app_zapras.c, 1.17, 1.18
- Next message: [Asterisk-cvs] asterisk ChangeLog,1.41,1.42 Makefile,1.219,1.220
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list