fix CR line endings

This commit is contained in:
Daniel Swarbrick 2010-12-30 23:43:03 +01:00
parent cc198a6e91
commit 5401c60493
1 changed files with 2 additions and 4 deletions

View File

@ -346,8 +346,8 @@ static switch_status_t load_config(switch_memory_pool_t *pool)
} else if (!strcasecmp(var, "default-template")) {
globals.default_template = switch_core_strdup(pool, val);
} else if (!strcasecmp(var, "master-file-only")) {
globals.masterfileonly = switch_true(val);
}
globals.masterfileonly = switch_true(val);
}
}
}
@ -405,8 +405,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_cdr_csv_load)
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
return status;
}