aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-11 21:38:40 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-11 21:38:40 +0000
commit5c31605852f99bb3c63757bd9f4053d3ed1f95b1 (patch)
treec9abdf2395828fe713faff8ce9980741f1dccf89 /main
parent66a6493fed0cfb6243a89a15e325d5c33bb39bec (diff)
Initialize parkingtime to DEFAULT_PARK_TIME instead of 0
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@121955 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/features.c b/main/features.c
index 4b281bf86..3c66769e6 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);
}
}