avoid namespace collision.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3801 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
109b2cf3ec
commit
fdc28b5724
|
@ -223,7 +223,7 @@ static JSFunctionSpec etpan_functions[] = {
|
|||
{0}
|
||||
};
|
||||
|
||||
switch_status_t spidermonkey_load(JSContext *cx, JSObject *obj)
|
||||
switch_status_t etpan_load(JSContext *cx, JSObject *obj)
|
||||
{
|
||||
JS_DefineFunctions(cx, obj, etpan_functions);
|
||||
|
||||
|
@ -244,7 +244,7 @@ switch_status_t spidermonkey_load(JSContext *cx, JSObject *obj)
|
|||
|
||||
const sm_module_interface_t etpan_module_interface = {
|
||||
/*.name = */ modname,
|
||||
/*.spidermonkey_load*/ spidermonkey_load,
|
||||
/*.spidermonkey_load*/ etpan_load,
|
||||
/*.next*/ NULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue