From 2fde71cb457b108fd147c2aa8d728c7465044668 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 30 May 2008 17:13:20 +0000 Subject: [PATCH] Oops, broke 1.6 (thanks MattF) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@119304 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_stack.c b/apps/app_stack.c index 5a8334771c..f181fe9527 100644 --- a/apps/app_stack.c +++ b/apps/app_stack.c @@ -505,7 +505,7 @@ static int unload_module(void) static int load_module(void) { struct ast_context *con; - con = ast_context_find_or_create(NULL, NULL, "app_stack_gosub_virtual_context", "app_stack"); + con = ast_context_find_or_create(NULL, "app_stack_gosub_virtual_context", "app_stack"); if (!con) { ast_log(LOG_ERROR, "Virtual context 'app_stack_gosub_virtual_context' does not exist and unable to create\n"); return AST_MODULE_LOAD_DECLINE;