[svn-commits] russell: branch 1.6.2 r190994 - in /branches/1.6.2: ./ main/indications.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Apr 29 03:59:04 CDT 2009
Author: russell
Date: Wed Apr 29 03:59:00 2009
New Revision: 190994
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=190994
Log:
Merged revisions 190993 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r190993 | russell | 2009-04-29 03:58:39 -0500 (Wed, 29 Apr 2009) | 7 lines
Log an error message if indications.conf is not found.
(closes issue #14990)
Reported by: tzafrir
Patches:
indications_err.diff uploaded by tzafrir (license 46)
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/main/indications.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/main/indications.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/main/indications.c?view=diff&rev=190994&r1=190993&r2=190994
==============================================================================
--- branches/1.6.2/main/indications.c (original)
+++ branches/1.6.2/main/indications.c Wed Apr 29 03:59:00 2009
@@ -1038,6 +1038,7 @@
cfg = ast_config_load2(config, "indications", config_flags);
if (cfg == CONFIG_STATUS_FILEMISSING || cfg == CONFIG_STATUS_FILEINVALID) {
+ ast_log(LOG_ERROR, "Can't find indications config file %s.\n", config);
return -1;
} else if (cfg == CONFIG_STATUS_FILEUNCHANGED) {
return 0;
More information about the svn-commits
mailing list