From 898cd20cebe48e2ab49a89ee116be24d0d81b87e Mon Sep 17 00:00:00 2001 From: Matt O'Gorman Date: Wed, 18 Jan 2006 00:47:04 +0000 Subject: [PATCH] Changed order of autoload so that pbx_ comes before channels, and in doing so cause bug 6002 to not be an issue git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@8162 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader.c b/loader.c index aa2a282974..d9e0c88d02 100644 --- a/loader.c +++ b/loader.c @@ -457,8 +457,8 @@ static int ast_resource_exists(char *resource) static const char *loadorder[] = { "res_", - "chan_", "pbx_", + "chan_", NULL, };