]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
s/supress/suppress/i
authorMathieu Rene <mrene@avgs.ca>
Wed, 23 Dec 2009 18:27:00 +0000 (18:27 +0000)
committerMathieu Rene <mrene@avgs.ca>
Wed, 23 Dec 2009 18:27:00 +0000 (18:27 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16047 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_ivr_async.c

index 585af008577ab1e61a40392118e66af9fe889609..369157a8de0c8dff1a6c12202cbace875b8a910b 100644 (file)
@@ -1258,7 +1258,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_preprocess_session(switch_core_sessio
                                                int db = atoi(val);
                                                if (db < 0) {
                                                        r = speex_preprocess_ctl(st, SPEEX_PREPROCESS_SET_NOISE_SUPPRESS, &db);
-                                                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Setting NOISE_SUPRESS on %c to %d [%d]\n", rw, db, r);
+                                                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Setting NOISE_SUPPRESS on %c to %d [%d]\n", rw, db, r);
                                                } else {
                                                        switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Syntax error noise_suppress should be in -db\n");
                                                }
@@ -1300,7 +1300,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_preprocess_session(switch_core_sessio
                                                int db = atoi(val);
                                                if (db < 0) {
                                                        speex_preprocess_ctl(st, SPEEX_PREPROCESS_SET_ECHO_SUPPRESS, &db);
-                                                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Setting ECHO_SUPRESS on %c to %d [%d]\n", rw, db, r);
+                                                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Setting ECHO_SUPPRESS on %c to %d [%d]\n", rw, db, r);
                                                } else {
                                                        switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Syntax error echo_suppress should be in -db\n");
                                                }