From a564e1df6198abbab01e1e35d78345863faf7a94 Mon Sep 17 00:00:00 2001 From: Brian West Date: Tue, 30 Oct 2007 20:19:24 +0000 Subject: [PATCH] small fix git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6091 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_swig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_swig.c b/src/switch_swig.c index e1e0cb9ad0..dad4919ad0 100644 --- a/src/switch_swig.c +++ b/src/switch_swig.c @@ -55,7 +55,7 @@ int fs_core_init(char *path) path = NULL; } - status = switch_core_init(path, &err); + status = switch_core_init(path, SCF_NONE, &err); return status == SWITCH_STATUS_SUCCESS ? 1 : 0; }