From 4765d4145e66e76fbff0cacb4c580f08af37a9b4 Mon Sep 17 00:00:00 2001 From: Joshua Colp <jcolp@digium.com> Date: Fri, 11 May 2007 15:48:38 +0000 Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/trunk@63873 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_features.c | 1 + 1 file changed, 1 insertion(+) diff --git a/res/res_features.c b/res/res_features.c index ec12df6d7b..a8b9bb8f70 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; -- GitLab