aboutsummaryrefslogtreecommitdiffstats
path: root/main/features.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-22 17:57:32 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-22 17:57:32 +0000
commitbe61b59c53e6ab564822f9dcdbbe0e7a8c15f29c (patch)
tree9172adf7f68029cf8e12b03eca0e1bee3e7f4316 /main/features.c
parent9f9effbc3a04d0b90c5494f26da5c06edeba048e (diff)
Merged revisions 189951 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r189951 | russell | 2009-04-22 11:56:43 -0500 (Wed, 22 Apr 2009) | 2 lines Fix call parking callback. Pipes -> Commas. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@189984 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/features.c')
-rw-r--r--main/features.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/features.c b/main/features.c
index 823e95803..d75a7c098 100644
--- a/main/features.c
+++ b/main/features.c
@@ -2774,9 +2774,9 @@ static void *do_parking_thread(void *ignore)
if (dialfeatures) {
char buf[MAX_DIAL_FEATURE_OPTIONS] = {0,};
- snprintf(returnexten, sizeof(returnexten), "%s|30|%s", peername, callback_dialoptions(&(dialfeatures->features_callee), &(dialfeatures->features_caller), buf, sizeof(buf)));
+ snprintf(returnexten, sizeof(returnexten), "%s,30,%s", peername, callback_dialoptions(&(dialfeatures->features_callee), &(dialfeatures->features_caller), buf, sizeof(buf)));
} else { /* Existing default */
- snprintf(returnexten, sizeof(returnexten), "%s|30|t", peername);
+ snprintf(returnexten, sizeof(returnexten), "%s,30,t", peername);
}
ast_add_extension2(con, 1, peername_flat, 1, NULL, NULL, "Dial", ast_strdup(returnexten), ast_free_ptr, registrar);
}