aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-11 15:48:38 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-11 15:48:38 +0000
commitd76d351108efc714f896778481e25ec2117a0115 (patch)
tree0a37b816ecc033e64d621d75febea99b0b2faad2 /res
parentb4f97a33d87e1fb0d806f920896bdceeb3e4a5ff (diff)
Merged revisions 63872 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r63872 | file | 2007-05-11 11:43:14 -0400 (Fri, 11 May 2007) | 2 lines Make the PARKINGEXTEN feature of parking actually work. (issue #9708 reported by mdu113) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@63873 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_features.c b/res/res_features.c
index ec12df6d7..a8b9bb8f7 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -360,6 +360,7 @@ int ast_park_call(struct ast_channel *chan, struct ast_channel *peer, int timeou
return 0; /* Continue execution if possible */
}
ast_copy_string(pu->parkingexten, parkingexten, sizeof(pu->parkingexten));
+ x = atoi(parkingexten);
} else {
/* Select parking space within range */
parking_range = parking_stop - parking_start+1;