From 60aa798d2ea0d56004b3f57874312a1e88ea2b5c Mon Sep 17 00:00:00 2001 From: Rupa Schomaker Date: Tue, 9 Feb 2010 15:36:53 +0000 Subject: [PATCH] don't have defaults for dsn,user,pass so that user/pass at least can be specified by the real dsn git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16589 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_nibblebill/mod_nibblebill.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/mod/applications/mod_nibblebill/mod_nibblebill.c b/src/mod/applications/mod_nibblebill/mod_nibblebill.c index 08249ca3f5..526e35c370 100644 --- a/src/mod/applications/mod_nibblebill/mod_nibblebill.c +++ b/src/mod/applications/mod_nibblebill/mod_nibblebill.c @@ -186,15 +186,6 @@ static switch_status_t load_config(void) /* Set defaults for any variables still not set */ setdefaults: - if (zstr(globals.db_username)) { - set_global_db_username("bandwidth.com"); - } - if (zstr(globals.db_password)) { - set_global_db_password("dev"); - } - if (zstr(globals.db_dsn)) { - set_global_db_dsn("bandwidth.com"); - } if (zstr(globals.percall_action)) { set_global_percall_action("hangup"); }