From: Brian West Date: Tue, 30 Oct 2007 20:19:24 +0000 (+0000) Subject: small fix X-Git-Tag: v1.0-beta2~283 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a564e1df6198abbab01e1e35d78345863faf7a94;p=thirdparty%2Ffreeswitch.git small fix git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6091 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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; }