summaryrefslogtreecommitdiff
path: root/main/pbx.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-08-15 20:35:24 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-08-15 20:35:24 +0000
commit3a5eb27579e440f86356683fb54919f2f32dd256 (patch)
treee2d07b0eddaa954c2742ea9d1f810c3a3ef196fe /main/pbx.c
parent7fb2ed4c53461c447685a68cc6a7dfeaaa4b308f (diff)
Remove deprecated syntax from sample config file
(closes issue #13314) Reported by: kue git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@138206 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index cb9a5bf5f..3bf360ad7 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -6272,7 +6272,7 @@ int ast_context_add_include2(struct ast_context *con, const char *value,
/* Strip off timing info, and process if it is there */
if ( (c = strchr(p, ',')) ) {
*c++ = '\0';
- new_include->hastime = ast_build_timing(&(new_include->timing), c);
+ new_include->hastime = ast_build_timing(&(new_include->timing), c);
}
new_include->next = NULL;
new_include->registrar = registrar;