aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-19 15:55:08 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-19 15:55:08 +0000
commit57f96d16354d592fe46f9fa110345ec238c6e637 (patch)
tree2ebee77495e4469fda68b09eb2141270be6fc721 /res
parentf4cad0cfbeed08048cc78a19b27afb20a0f7e87f (diff)
Merged revisions 89419 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89419 | file | 2007-11-19 11:53:32 -0400 (Mon, 19 Nov 2007) | 6 lines Print out the correct filename (features.conf) in the log message when parkpos options are incorrect. (closes issue #11295) Reported by: Laureano Patches: res_features.c.patch uploaded by Laureano (license 265) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89420 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 51c75e1f6..9d6356ae7 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -2885,7 +2885,7 @@ static int load_config(void)
parkingtime = parkingtime * 1000;
} else if (!strcasecmp(var->name, "parkpos")) {
if (sscanf(var->value, "%d-%d", &start, &end) != 2) {
- ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of parking.conf\n", var->lineno);
+ ast_log(LOG_WARNING, "Format for parking positions is a-b, where a and b are numbers at line %d of features.conf\n", var->lineno);
} else {
parking_start = start;
parking_stop = end;