summaryrefslogtreecommitdiff
path: root/res/res_parking.c
diff options
context:
space:
mode:
authorMartin Pycko <martinp@digium.com>2003-07-14 15:33:21 +0000
committerMartin Pycko <martinp@digium.com>2003-07-14 15:33:21 +0000
commitcbd33586acb2bc620ffdb474be9c10338908168b (patch)
treea3ee7cd00760982ea87d297d79b40ff246a0b1a3 /res/res_parking.c
parent37f1d9add68fc11ef92e517dc721d35424ed0592 (diff)
Add a safe way to reload extensions config (don't change/delete the current extenions until extensions.conf was parsed and the new set of extensions is created) and add "extensions reload" CLI command so we could reload only extensions.conf config file without touching config files of other modules
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1183 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_parking.c')
-rwxr-xr-xres/res_parking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_parking.c b/res/res_parking.c
index 781d1d859..13bdbaf6b 100755
--- a/res/res_parking.c
+++ b/res/res_parking.c
@@ -633,7 +633,7 @@ int load_module(void)
}
con = ast_context_find(parking_con);
if (!con) {
- con = ast_context_create(parking_con, registrar);
+ con = ast_context_create(NULL,parking_con, registrar);
if (!con) {
ast_log(LOG_ERROR, "Parking context '%s' does not exist and unable to create\n", parking_con);
return -1;