Fix newline char.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@809 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2006-03-08 17:12:41 +00:00
parent 0fe17aff72
commit c086f23e6c
1 changed files with 2 additions and 2 deletions

View File

@ -380,11 +380,11 @@ SWITCH_DECLARE(switch_status) switch_loadable_module_init()
if (!strcasecmp(var, "load")) {
if (!strcasecmp(val, "all")) {
if (count == 1) {
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Loading all modules.");
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Loading all modules.\n");
all = 1;
break;
} else {
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "This option must be the first one to work.");
switch_console_printf(SWITCH_CHANNEL_CONSOLE, "This option must be the first one to work.\n");
}
} else {
if (strchr(val, '.') && !strstr(val, ext) && !strstr(val, EXT)) {