From 65a1460c51406c3ba70e8a2f9bf23a332a9a6d8e Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Wed, 11 Jun 2008 21:38:40 +0000 Subject: [PATCH] Initialize parkingtime to DEFAULT_PARK_TIME instead of 0 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@121955 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/features.c b/main/features.c index 4b281bf865..3c66769e63 100644 --- a/main/features.c +++ b/main/features.c @@ -3001,7 +3001,7 @@ static int load_config(void) default_parkinglot->parking_stop = 750; default_parkinglot->parking_offset = 0; default_parkinglot->parkfindnext = 0; - default_parkinglot->parkingtime = 0; + default_parkinglot->parkingtime = DEFAULT_PARK_TIME; ao2_unlock(default_parkinglot); } }