]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix typo in several places. Patch from Matt Klein.
authorMichael Jerris <mike@jerris.com>
Thu, 8 Feb 2007 13:50:28 +0000 (13:50 +0000)
committerMichael Jerris <mike@jerris.com>
Thu, 8 Feb 2007 13:50:28 +0000 (13:50 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4163 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_conference/mod_conference.c
src/mod/applications/mod_dptools/mod_dptools.c
src/mod/endpoints/mod_dingaling/mod_dingaling.c
src/mod/endpoints/mod_sofia/mod_sofia.c
src/switch_ivr.c

index 95a5e6b53e66721ef18ea546025827c0dfa9df67..4e46bcf9854dcf81f446cf02f5178a35fa5cb227 100644 (file)
@@ -4039,7 +4039,7 @@ static switch_status_t chat_send(char *proto, char *from, char *to, char *subjec
     }
 
     if (!(ci = switch_loadable_module_get_chat_interface(proto))) {
-        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invaid Chat Interface [%s]!\n", proto);
+        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", proto);
     }
 
 
index 0653fbdf5922a4af2fc725b5c8e70c71b138fb4e..2ced47ea074e4ed144ddb8240c27e90ad8ad57c1 100644 (file)
@@ -396,7 +396,7 @@ static switch_status_t chat_api_function(char *fmt, switch_core_session_t *sessi
                        ci->chat_send("dp", argv[1], argv[2], "", argv[3], "");
                        stream->write_function(stream, "Sent");
                } else {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invaid Chat Interface [%s]!\n", argv[0]);
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", argv[0]);
                }
        } else {
                stream->write_function(stream, "Invalid");
index 8bfcbe4f0caa8bdf1c8960a8b76177e5c2c4a0b1..bc27efe45b25734390d1418b4b1c35bed6f4e521 100644 (file)
@@ -2296,7 +2296,7 @@ static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsessi
                        if ((ci = switch_loadable_module_get_chat_interface(proto))) {
                                ci->chat_send(MDL_CHAT_PROTO, from, to, subject, msg, hint);
                        } else {
-                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invaid Chat Interface [%s]!\n", proto);
+                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", proto);
                        }
 
                        switch_safe_free(pproto);
index ac094a658cdadf2c9c4a9da46baf382d8b1a90f2..4d4d0c7d3e98c2500c42c3d249e29352012b5f21 100644 (file)
@@ -2633,7 +2633,7 @@ static void sip_i_message(int status,
                                if ((ci = switch_loadable_module_get_chat_interface(proto))) {
                                        ci->chat_send(SOFIA_CHAT_PROTO, from_addr, to_addr, "", msg, full_from);
                                } else {
-                                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invaid Chat Interface [%s]!\n", proto ? proto : "(none)");
+                                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", proto ? proto : "(none)");
                                }
                                
                        }
index 115fcd776e85d48c041a92b2b94112d99b0827ff..1155a8ff41ec02c2902fada5f2d675f1e6e2e132 100644 (file)
@@ -4740,7 +4740,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *s
                             
                             si->say_function(session, odata, get_say_type_by_name(say_type), get_say_method_by_name(say_method), args);
                         } else {
-                            switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invaid SAY Interface [%s]!\n", lang);
+                            switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid SAY Interface [%s]!\n", lang);
                         }
                     } else if (!strcasecmp(func, "speak-text")) {
                         switch_codec_t *read_codec;