summaryrefslogtreecommitdiff
path: root/res/parking
diff options
context:
space:
mode:
Diffstat (limited to 'res/parking')
-rw-r--r--res/parking/parking_applications.c2
-rw-r--r--res/parking/parking_bridge.c2
-rw-r--r--res/parking/parking_bridge_features.c2
-rw-r--r--res/parking/parking_tests.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/res/parking/parking_applications.c b/res/parking/parking_applications.c
index 2d481e421..85075bc5a 100644
--- a/res/parking/parking_applications.c
+++ b/res/parking/parking_applications.c
@@ -704,7 +704,7 @@ static void announce_to_dial(char *dial_string, char *announce_string, int parki
snprintf(buf, sizeof(buf), "%d", parkingspace);
oh.vars = ast_variable_new("_PARKEDAT", buf, "");
- dchan = __ast_request_and_dial(dial_tech, cap_slin, NULL, dial_string, 30000,
+ dchan = __ast_request_and_dial(dial_tech, cap_slin, NULL, NULL, dial_string, 30000,
&outstate,
parkee_snapshot->caller_number,
parkee_snapshot->caller_name,
diff --git a/res/parking/parking_bridge.c b/res/parking/parking_bridge.c
index bb9dbf30d..448d4ed5d 100644
--- a/res/parking/parking_bridge.c
+++ b/res/parking/parking_bridge.c
@@ -456,7 +456,7 @@ struct ast_bridge *bridge_parking_new(struct parking_lot *bridge_lot)
bridge = bridge_alloc(sizeof(struct ast_bridge_parking), &ast_bridge_parking_v_table);
bridge = bridge_base_init(bridge, AST_BRIDGE_CAPABILITY_HOLDING,
AST_BRIDGE_FLAG_MERGE_INHIBIT_TO | AST_BRIDGE_FLAG_MERGE_INHIBIT_FROM
- | AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM, "Parking", bridge_lot->name);
+ | AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM, "Parking", bridge_lot->name, NULL);
bridge = ast_bridge_parking_init(bridge, bridge_lot);
bridge = bridge_register(bridge);
return bridge;
diff --git a/res/parking/parking_bridge_features.c b/res/parking/parking_bridge_features.c
index bf211a2bd..e9f814151 100644
--- a/res/parking/parking_bridge_features.c
+++ b/res/parking/parking_bridge_features.c
@@ -200,7 +200,7 @@ static struct ast_channel *park_local_transfer(struct ast_channel *parker, const
snprintf(destination, sizeof(destination), "%s@%s", exten, context);
/* Now we request that chan_local prepare to call the destination */
- parkee = ast_request("Local", ast_channel_nativeformats(parker), parker, destination,
+ parkee = ast_request("Local", ast_channel_nativeformats(parker), NULL, parker, destination,
&cause);
if (!parkee) {
return NULL;
diff --git a/res/parking/parking_tests.c b/res/parking/parking_tests.c
index f6767769a..ea7fd31d1 100644
--- a/res/parking/parking_tests.c
+++ b/res/parking/parking_tests.c
@@ -54,7 +54,7 @@ static const struct ast_party_caller alice_callerid = {
static struct ast_channel *create_alice_channel(void)
{
struct ast_channel *alice = ast_channel_alloc(0, AST_STATE_DOWN,
- "100", "Alice", "100", "100", "default", NULL, 0,
+ "100", "Alice", "100", "100", "default", NULL, NULL, 0,
CHANNEL_TECH_NAME "/Alice");
if (!alice) {