From 71f94e0ee599fea0b209ac54e9807b3cf5be9e70 Mon Sep 17 00:00:00 2001 From: Brian West Date: Wed, 5 Nov 2008 00:01:37 +0000 Subject: [PATCH] tweak git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10243 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_dptools/mod_dptools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_dptools/mod_dptools.c b/src/mod/applications/mod_dptools/mod_dptools.c index e3309955c3..bd1e4c166d 100644 --- a/src/mod/applications/mod_dptools/mod_dptools.c +++ b/src/mod/applications/mod_dptools/mod_dptools.c @@ -2262,11 +2262,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dptools_load) *module_interface = switch_loadable_module_create_module_interface(pool, modname); error_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE); - error_endpoint_interface->interface_name = "ERROR"; + error_endpoint_interface->interface_name = "error"; error_endpoint_interface->io_routines = &error_io_routines; user_endpoint_interface = switch_loadable_module_create_interface(*module_interface, SWITCH_ENDPOINT_INTERFACE); - user_endpoint_interface->interface_name = "USER"; + user_endpoint_interface->interface_name = "user"; user_endpoint_interface->io_routines = &user_io_routines; SWITCH_ADD_CHAT(chat_interface, "event", event_chat_send);