aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-19 21:49:30 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-19 21:49:30 +0000
commit9fb4599437518ad59cd63ff76cea97cbdcfd371d (patch)
treed2eb041f9f1e9d1a13963439ddb9f72aabadce0c /main
parentd14c12effda8dc6399c57139b8228f62c03fc228 (diff)
Don't consider a missing indications.conf to be a critical error.
There were many changes in revision 176627 which would avoid the error that a missing config would have caused. Other than this, there are no other config files (including asterisk.conf, surprisingly) that are required. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@257947 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/indications.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/indications.c b/main/indications.c
index 78010e0e7..a45da4643 100644
--- a/main/indications.c
+++ b/main/indications.c
@@ -1039,7 +1039,7 @@ static int load_indications(int reload)
if (cfg == CONFIG_STATUS_FILEMISSING || cfg == CONFIG_STATUS_FILEINVALID) {
ast_log(LOG_ERROR, "Can't find indications config file %s.\n", config);
- return -1;
+ return 0;
} else if (cfg == CONFIG_STATUS_FILEUNCHANGED) {
return 0;
}