From: Daniel Swarbrick Date: Thu, 30 Dec 2010 22:43:03 +0000 (+0100) Subject: fix CR line endings X-Git-Tag: v1.2-rc1~223^2~2^2^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5401c604935c496892875411cdeb53d32ac246ea;p=thirdparty%2Ffreeswitch.git fix CR line endings --- diff --git a/src/mod/event_handlers/mod_cdr_csv/mod_cdr_csv.c b/src/mod/event_handlers/mod_cdr_csv/mod_cdr_csv.c index eeb5e485bd..c1b4b77998 100644 --- a/src/mod/event_handlers/mod_cdr_csv/mod_cdr_csv.c +++ b/src/mod/event_handlers/mod_cdr_csv/mod_cdr_csv.c @@ -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; }