]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
I was told that the rules for spanish are the same as for english. So for now, I...
authorMichael Jerris <mike@jerris.com>
Fri, 30 Mar 2007 17:14:28 +0000 (17:14 +0000)
committerMichael Jerris <mike@jerris.com>
Fri, 30 Mar 2007 17:14:28 +0000 (17:14 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4809 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/say/mod_say_en/mod_say_en.c

index 53f21c8d2081df7e9658831459842af24df021a2..52d895012208fe5200be0a322d6112a5e676d06b 100644 (file)
@@ -510,9 +510,15 @@ static switch_status_t en_say(switch_core_session_t *session, char *tosay, switc
        return SWITCH_STATUS_FALSE;
 }
 
+static const switch_say_interface_t es_say_interface = {
+       /*.name */ "es",
+       /*.say_function */ en_say,
+};
+
 static const switch_say_interface_t en_say_interface = {
        /*.name */ "en",
        /*.say_function */ en_say,
+       /*.next */ &es_say_interface
 };
 
 static switch_loadable_module_interface_t say_en_module_interface = {