summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2008-06-11 21:38:40 +0000
committerTerry Wilson <twilson@digium.com>2008-06-11 21:38:40 +0000
commit65a1460c51406c3ba70e8a2f9bf23a332a9a6d8e (patch)
treec9abdf2395828fe713faff8ce9980741f1dccf89
parent78e593eecb7eb35acf7799ba90ff313d8ad07afd (diff)
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
-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);
}
}