]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Spelling fixes #2
authorStefan Knoblich <stkn@freeswitch.org>
Mon, 7 Jan 2008 10:55:15 +0000 (10:55 +0000)
committerStefan Knoblich <stkn@freeswitch.org>
Mon, 7 Jan 2008 10:55:15 +0000 (10:55 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7120 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_core.c
src/switch_ivr.c
src/switch_ivr_menu.c

index 8733aec4b58f39113ae4f19fcb4855bc5611a3ee..2a29a5dabb8156b93345800c8629a469cfc4a4be 100644 (file)
@@ -675,12 +675,12 @@ SWITCH_DECLARE(switch_status_t) switch_core_init(switch_core_flag_t flags, switc
 
        /* INIT APR and Create the pool context */
        if (apr_initialize() != SWITCH_STATUS_SUCCESS) {
-               *err = "FATAL ERROR! Could not initilize APR\n";
+               *err = "FATAL ERROR! Could not initialize APR\n";
                return SWITCH_STATUS_MEMERR;
        }
 
        if (!(runtime.memory_pool = switch_core_memory_init())) {
-               *err = "FATAL ERROR! Could noat allocate memory pool\n";
+               *err = "FATAL ERROR! Could not allocate memory pool\n";
                return SWITCH_STATUS_MEMERR;
        }
        switch_assert(runtime.memory_pool != NULL);
index 313155b7a75b36b4053fb72fdc9381369942424e..47b3c72fdde0a6535d37ebfca038b2e370ab5fcf 100644 (file)
@@ -409,7 +409,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_park(switch_core_session_t *session,
        switch_assert(channel != NULL);
 
        if (!switch_channel_test_flag(channel, CF_ANSWERED)) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Careful, Channel is unaswered. Pre-answering...\n");
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Careful, Channel is unanswered. Pre-answering...\n");
                switch_channel_pre_answer(channel);
        }
 
index e19ec253db8af428237333509153b622bb245d83..60e33203c965752a85134df76a21f019a270880d 100644 (file)
@@ -492,7 +492,7 @@ static switch_status_t switch_ivr_menu_stack_xml_add(switch_ivr_menu_xml_ctx_t *
        if (xml_ctx != NULL && name != NULL && xml_ctx->pool != NULL && switch_ivr_menu_stack_xml_find(xml_ctx, name) == NULL) {
                switch_ivr_menu_xml_map_t *map = switch_core_alloc(xml_ctx->pool, sizeof(switch_ivr_menu_xml_map_t));
 
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "switch_ivr_menu_stack_xml_add bindng '%s'\n", name);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "switch_ivr_menu_stack_xml_add binding '%s'\n", name);
                // and we have memory
                if (map != NULL) {
                        map->name = switch_core_strdup(xml_ctx->pool, name);