From: Russell Bryant Date: Tue, 22 Apr 2008 18:29:56 +0000 (+0000) Subject: After a parked call times out, allow the call back to the parker to time out. X-Git-Tag: 1.4.20-rc1~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d87023aef05921762eb0e336c59e9b0d6a102dbe;p=thirdparty%2Fasterisk.git After a parked call times out, allow the call back to the parker to time out. (closes issue #10890) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@114542 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index 7eb1b4c4c9..9c7fef79fa 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1711,7 +1711,7 @@ static void *do_parking_thread(void *ignore) } if (con) { char returnexten[AST_MAX_EXTENSION]; - snprintf(returnexten, sizeof(returnexten), "%s||t", peername); + snprintf(returnexten, sizeof(returnexten), "%s|30|t", peername); ast_add_extension2(con, 1, peername, 1, NULL, NULL, "Dial", strdup(returnexten), ast_free, registrar); } set_c_e_p(chan, parking_con_dial, peername, 1);