]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
more renaming
authorMoises Silva <moy@sangoma.com>
Tue, 7 Sep 2010 19:21:20 +0000 (15:21 -0400)
committerMoises Silva <moy@sangoma.com>
Tue, 7 Sep 2010 19:21:20 +0000 (15:21 -0400)
src/mod/applications/mod_commands/mod_commands.c
src/switch_console.c
src/switch_core.c

index e1eb2a6b6a41a0e8d5b60d759dc2f48c5c5f7ba9..6900c5dc4a89117cb24926757dcebfe3bb6533e6 100644 (file)
@@ -73,7 +73,7 @@ SWITCH_STANDARD_API(shutdown_function)
 
 SWITCH_STANDARD_API(version_function)
 {
-       stream->write_function(stream, "FreeSWITCH Version %s\n", SWITCH_VERSION_FULL);
+       stream->write_function(stream, "Sangoma Media Gateway Version %s\n", SWITCH_VERSION_FULL);
        return SWITCH_STATUS_SUCCESS;
 }
 
index 30d1d97fed0333acb7f87a3f4cc5e1012860636b..60c8ca9345aa67c21e887d24533bd619d40560b0 100644 (file)
@@ -975,7 +975,7 @@ static unsigned char console_f12key(EditLine * el, int ch)
 char *prompt(EditLine * e)
 {
        if (*prompt_str == '\0') {
-               switch_snprintf(prompt_str, sizeof(prompt_str), "freeswitch@%s> ", hostname);
+               switch_snprintf(prompt_str, sizeof(prompt_str), "sangoma-media-gateway@%s> ", hostname);
        }
 
        return prompt_str;
index 7fd000a2bdf711321ef2474bda60839bbc88ffa8..dd12aef9084e52ce2a929a96e1ef3c5ecb28c3c8 100644 (file)
@@ -1627,7 +1627,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_init_and_modload(switch_core_flag_t
 
 
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE,
-                                         "\nFreeSWITCH Version %s Started.\nMax Sessions[%u]\nSession Rate[%d]\nSQL [%s]\n", SWITCH_VERSION_FULL,
+                                         "\nSangoma Media Gateway Version %s Started.\nMax Sessions[%u]\nSession Rate[%d]\nSQL [%s]\n", SWITCH_VERSION_FULL,
                                          switch_core_session_limit(0),
                                          switch_core_sessions_per_second(0), switch_test_flag((&runtime), SCF_USE_SQL) ? "Enabled" : "Disabled");