Skip to content

Commit 7363a2a

Browse files
committed
mod_nibblebill.c: remove deprecated warning
1 parent ca0f58f commit 7363a2a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/mod/applications/mod_nibblebill/mod_nibblebill.c

-5
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,6 @@ static switch_status_t nibblebill_load_config(void)
224224
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "odbc_dsn is %s\n", val);
225225
switch_safe_free(globals.odbc_dsn);
226226
globals.odbc_dsn = strdup(val);
227-
} else if (!strcasecmp(var, "db_dsn") && !zstr(val)) {
228-
/* For backwards-compatibility */
229-
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "this nibblebill param(db_dsn) is deprecated and will be removed in 1.4 - odbc_dsn is %s\n", val);
230-
switch_safe_free(globals.odbc_dsn);
231-
globals.odbc_dsn = strdup(val);
232227
} else if (!strcasecmp(var, "db_table")) {
233228
set_global_db_table(val);
234229
} else if (!strcasecmp(var, "db_column_cash")) {

0 commit comments

Comments
 (0)